summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2011-07-13 14:23:19 +0000
committerAndy Polyakov <appro@openssl.org>2011-07-13 14:23:19 +0000
commit2966c2ec31e81187da3fbbe1499a6aa3acfd355f (patch)
tree0a8bdfc6e0e37f14141095fde3718dd750445514 /config
parent4195a369fddbc69b20895c99e3415a61f9c1a378 (diff)
config: detect if assembler supports --noexecstack and pass it down.
Diffstat (limited to 'config')
-rwxr-xr-xconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/config b/config
index 63edfd6123..e82868721e 100755
--- a/config
+++ b/config
@@ -840,6 +840,10 @@ esac
# options="$options -DATALLA"
#fi
+($CC -Wa,--help -c -o /dev/null -x assembler /dev/null 2>&1 | \
+ grep \\--noexecstack) 2>&1 > /dev/null && \
+ options="$options -Wa,--noexecstack"
+
# gcc < 2.8 does not support -march=ultrasparc
if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
then