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
For libzpoline.so, i type the following command. make
I get the following error: main.c:242:9: error: dereferencing pointer to incomplete type ‘struct clone_args’
if (ca->flags & CLONE_VM)
The text was updated successfully, but these errors were encountered:
and I get another error: gcc -O3 -pipe -g -rdynamic -Werror -Wall -Wunused-function -Wextra -shared -fPIC -DSUPPLEMENTAL__REWRITTEN_ADDR_CHECK -c -o main.o main .c
gcc -O3 -pipe -g -rdynamic -Werror -Wall -Wunused-function -Wextra -shared -fPIC -DSUPPLEMENTAL__REWRITTEN_ADDR_CHECK -o libzpoline.so main.o -lopcodes -ldl
/usr/bin/ld: main.o: relocation R_X86_64_PC32 against symbol `syscall_hook' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
Makefile:33: recipe for target 'libzpoline.so' failed
make: *** [libzpoline.so] Error 1
Does the error mean suggests that there is a relocation issue with this symbol ?
For libzpoline.so, i type the following command.
make
I get the following error: main.c:242:9: error: dereferencing pointer to incomplete type ‘struct clone_args’
if (ca->flags & CLONE_VM)
The text was updated successfully, but these errors were encountered: