summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2007-09-27 07:43:58 +0000
committerAndy Polyakov <appro@openssl.org>2007-09-27 07:43:58 +0000
commit2c3ee16272231986e1ff50db9c0ed68343a51fb2 (patch)
treee550e94bb0328648375682da4ecb77c1d90e0ab9 /config
parent19112771d693aa5b63708b0ac24c4c13e19252e3 (diff)
downloadopenssl-new-2c3ee16272231986e1ff50db9c0ed68343a51fb2.tar.gz
Move -march=armv4t to ./config.
Diffstat (limited to 'config')
-rwxr-xr-xconfig6
1 files changed, 4 insertions, 2 deletions
diff --git a/config b/config
index e8128262d4..bb76191d58 100755
--- a/config
+++ b/config
@@ -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" ;;