diff options
author | Richard Levitte <levitte@openssl.org> | 2016-02-22 21:02:42 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-02-23 00:47:52 +0100 |
commit | 893fe73a637cd349b4bd2f39d2d6019e1d7cac18 (patch) | |
tree | 0cdff3a5078f8373a2abe0b5218ba1ab299eaaa2 /config | |
parent | Add OPENSSL_PIC back (diff) | |
download | openssl-893fe73a637cd349b4bd2f39d2d6019e1d7cac18.tar.xz openssl-893fe73a637cd349b4bd2f39d2d6019e1d7cac18.zip |
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-x | config | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |