/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

  1. #!/bin/sh
  2. echo "int foo(void) { char X[200]; return 3; }" | $* -S -xc -c -O0 -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
  3. if [ "$?" -eq "0" ] ; then
  4. echo y
  5. else
  6. echo n
  7. fi