swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: 387c31c7e5c9805b0aef8833d1731a5fe7bdea14 authored by Linus Torvalds on 29 December 2010, 01:05:48 UTC
Linux 2.6.37-rc8
Tip revision: 387c31c
gcc-x86_32-has-stack-protector.sh
#!/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
back to top