Sign in
gfiber
/
kernel
/
bruno
/
c53af76d5de1af844a71e673ae4a02f1786c1b9c
/
.
/
scripts
/
gcc-x86_64-has-stack-protector.sh
blob: 17867e723a51a667fdec65194b9033346ff1b786 [
file
] [
log
] [
blame
]
#!/bin/sh
echo
"int foo(void) { char X[200]; return 3; }"
|
$
*
-
S
-
x c
-
c
-
O0
-
mcmodel
=
kernel
-
fno
-
PIE
-
fstack
-
protector
-
-
o
-
2
>
/
dev
/
null
|
grep
-
q
"%gs"
if
[
"$?"
-
eq
"0"
]
;
then
echo y
else
echo n
fi