summaryrefslogtreecommitdiff
path: root/scripts/gcc-x86_32-has-stack-protector.sh
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-10-28 12:00:06 +0300
committerkx <kx@radix.pro>2023-10-28 12:00:06 +0300
commit8f3ce5b3998ec82c96385f8ce3d5fd6d24c8b859 (patch)
tree5bda49164664ad1429852668300d19bf559c830a /scripts/gcc-x86_32-has-stack-protector.sh
downloadlinux-orangepi-5.10.y-8f3ce5b3998ec82c96385f8ce3d5fd6d24c8b859.tar.xz
Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards
Diffstat (limited to 'scripts/gcc-x86_32-has-stack-protector.sh')
-rwxr-xr-xscripts/gcc-x86_32-has-stack-protector.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/gcc-x86_32-has-stack-protector.sh b/scripts/gcc-x86_32-has-stack-protector.sh
new file mode 100755
index 000000000..f5c119495
--- /dev/null
+++ b/scripts/gcc-x86_32-has-stack-protector.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+# SPDX-License-Identifier: GPL-2.0
+
+echo "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -m32 -O0 -fstack-protector - -o - 2> /dev/null | grep -q "%gs"