summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-06-19 15:41:23 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-06-19 15:41:23 +0000
commit71fc9b37aedb0ee7e664fba53696a11d0b879dd7 (patch)
treee3ac1972f0970743a33f9901ca8ce37df1b69297 /config
parent283aedf4985790e56bf547fd2196fc47ea7b44fe (diff)
Use -mcpu on alpha.
PR:1545
Diffstat (limited to 'config')
-rwxr-xr-xconfig6
1 files changed, 3 insertions, 3 deletions
diff --git a/config b/config
index f4ceb82a75..66d98200bf 100755
--- a/config
+++ b/config
@@ -527,9 +527,9 @@ case "$GUESSOS" in
esac
if [ "$CC" = "gcc" ]; then
case ${ISA:-generic} in
- EV5|EV45) options="$options -march=ev5";;
- EV56|PCA56) options="$options -march=ev56";;
- *) options="$options -march=ev6";;
+ EV5|EV45) options="$options -mcpu=ev5";;
+ EV56|PCA56) options="$options -mcpu=ev56";;
+ *) options="$options -mcpu=ev6";;
esac
fi
;;