Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 009d0431c3914de64666bec0d350e54fdd59df6a authored by Linus Torvalds on 01 December 2014, 00:42:27 UTC
Linux 3.18-rc7
Tip revision: 009d043
gcc-x86_64-has-stack-protector.sh
#!/bin/sh

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