https://github.com/torvalds/linux
Raw File
Tip revision: e9b1d5d0ff4d3ae86050dc4c91b3147361c7af9e authored by H. Peter Anvin on 14 May 2010, 20:55:57 UTC
x86, mrst: Don't blindly access extended config space
Tip revision: e9b1d5d
gcc-x86_64-has-stack-protector.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

echo "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -m64 -O0 -mcmodel=kernel -fno-PIE -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
back to top