Revision 318d86dbe55cbc63a61a83b9ff6cdbc044905f5e authored by John W. Linville on 12 February 2013, 15:41:46 UTC, committed by John W. Linville on 12 February 2013, 15:41:46 UTC
2 parent s 547b4e7 + d786f67
Raw File
gcc-x86_32-has-stack-protector.sh
#!/bin/sh

echo "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -O0 -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
if [ "$?" -eq "0" ] ; then
	echo y
else
	echo n
fi
back to top