Is there a way to make the C program stack executable using compilation?
I did
$ gcc -o convert -g convert
and then run
$ readelf -l convert
to check if the stack is executable, but the output was:
GNU_STACK 0x000000 0x00000000 0x00000000 0x00000 0x00000 RW 0x4
source
share