summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/scripts/gcc-x86_32-has-stack-protector.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ANDROID_3.4.5/scripts/gcc-x86_32-has-stack-protector.sh')
-rw-r--r--ANDROID_3.4.5/scripts/gcc-x86_32-has-stack-protector.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/ANDROID_3.4.5/scripts/gcc-x86_32-has-stack-protector.sh b/ANDROID_3.4.5/scripts/gcc-x86_32-has-stack-protector.sh
deleted file mode 100644
index 29493dc4..00000000
--- a/ANDROID_3.4.5/scripts/gcc-x86_32-has-stack-protector.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/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