summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-22 21:02:42 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-23 00:47:52 +0100
commit893fe73a637cd349b4bd2f39d2d6019e1d7cac18 (patch)
tree0cdff3a5078f8373a2abe0b5218ba1ab299eaaa2 /config
parent4f16039efe3589aa4d63a6f1fab799d0cd9338ca (diff)
downloadopenssl-new-893fe73a637cd349b4bd2f39d2d6019e1d7cac18.tar.gz
Remove all -march= from configs
These flags are limitting needlessly, are often patched by packagers, and should be specified on the configuration command line by anyone who desires for it to be specific rather than forced by us. This work was already done with mingw when those configs were worked on, now it gets applied to the remaining configs. Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'config')
-rwxr-xr-xconfig4
1 files changed, 3 insertions, 1 deletions
diff --git a/config b/config
index a70e3a2dd1..ba66b33278 100755
--- a/config
+++ b/config
@@ -812,7 +812,9 @@ case "$GUESSOS" in
x86pc-*-qnx6) OUT="QNX6-i386" ;;
*-*-qnx6) OUT="QNX6" ;;
x86-*-android|i?86-*-android) OUT="android-x86" ;;
- armv[7-9]*-*-android) OUT="android-armv7" ;;
+ armv[7-9]*-*-android)
+ OUT="android-armeabi"; options="$options -march=armv7-a" ;;
+ arm*-*-android) OUT="android-armeabi" ;;
*) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
esac