diff options
author | Andy Polyakov <appro@openssl.org> | 2007-09-27 09:43:58 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2007-09-27 09:43:58 +0200 |
commit | 2c3ee16272231986e1ff50db9c0ed68343a51fb2 (patch) | |
tree | e550e94bb0328648375682da4ecb77c1d90e0ab9 /config | |
parent | Minor ARMv4 update. (diff) | |
download | openssl-2c3ee16272231986e1ff50db9c0ed68343a51fb2.tar.xz openssl-2c3ee16272231986e1ff50db9c0ed68343a51fb2.zip |
Move -march=armv4t to ./config.
Diffstat (limited to 'config')
-rwxr-xr-x | config | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -611,8 +611,10 @@ case "$GUESSOS" in options="$options -DB_ENDIAN -mschedule=$CPUSCHEDULE -march=$CPUARCH" OUT="linux-generic32" ;; - arm[1-3]*-*-linux2) OUT="linux-generic32" ;; - arm*-*-linux2) OUT="linux-armv4" ;; + armv[1-3]*-*-linux2) OUT="linux-generic32" ;; + # -march=armv4t is expected to generate code binary compatible with + # vanilla armv4 but interoperable with armv4t. + arm*-*-linux2) OUT="linux-armv4"; options="$options -march=armv4t" ;; sh*b-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;; sh*-*-linux2) OUT="linux-generic32"; options="$options -DL_ENDIAN" ;; m68k*-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;; |