You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
all you need to do is to add the compile flag : -no-pie , it'll look like this 👍
printf 'Building... '
for bin in encrypt decrypt; do
gcc -Wall -no-pie -nostdlib -o $bin $bin.s
done
k3it
linked a pull request
Dec 1, 2019
that will
close
this issue
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?
The text was updated successfully, but these errors were encountered: