/scripts/gcc-x86_32-has-stack-protector.sh
https://bitbucket.org/abioy/linux · Shell · 8 lines · 6 code · 1 blank · 1 comment · 1 complexity · c41c70d0a390e67fe978160ed83b68f4 MD5 · raw file
- #!/bin/sh
- echo "int foo(void) { char X[200]; return 3; }" | $* -S -xc -c -O0 -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
- if [ "$?" -eq "0" ] ; then
- echo y
- else
- echo n
- fi