Sign in
googlers
/
maze
/
linux
/
5d707e9c8ef2a3596ed5c975c6ff05cec890c2b4
/
.
/
scripts
/
gcc-x86_64-has-stack-protector.sh
blob: 2d69fcdc56097096035c8a27fbf09f8b2db5d257 [
file
] [
log
] [
blame
]
#!/bin/sh
echo
"int foo(void) { char X[200]; return 3; }"
|
$1
-
S
-
xc
-
c
-
O0
-
mcmodel
=
kernel
-
fstack
-
protector
-
-
o
-
2
>
/
dev
/
null
|
grep
-
q
"%gs"
if
[
"$?"
-
eq
"0"
]
;
then
echo y
else
echo n
fi