aesni-examples
aesni-examples copied to clipboard
Relocation truncated to fit
I got this when I compiled it on my PC: /tmp/ccxMsZIh.o:fake:(.text+0x40): relocation truncated to fit: R_X86_64_32S against symbol `buf' defined in COMMON section in /tmp/ccxMsZIh.o Any Ideas?
same here
all you need to do is to add the compile flag : -no-pie , it'll look like this :+1: printf 'Building... ' for bin in encrypt decrypt; do gcc -Wall -no-pie -nostdlib -o $bin $bin.s done