summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-03-09 17:08:24 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-03-09 17:08:24 +0000
commit5d7dfefe82c9ca1982632616742816d970c61a03 (patch)
tree6c53048c9e47217f81c66bc288583203919f6550 /config
parent5e8e7054f76add84998f6133fb324116b4e811b9 (diff)
PR: 2186
Submitted By: "Joel Rabinovitch" <Joel.Rabinovitch@tecsys.com> Detect aix64-gcc
Diffstat (limited to 'config')
-rwxr-xr-xconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/config b/config
index 4d789df5ec..b9d1c7aa26 100755
--- a/config
+++ b/config
@@ -741,6 +741,10 @@ case "$GUESSOS" in
OBJECT_MODE=${OBJECT_MODE:-32}
if [ "$CC" = "gcc" ]; then
OUT="aix-gcc"
+ if [ $OBJECT_MODE -eq 64 ]; then
+ echo 'Your $OBJECT_MODE was found to be set to 64'
+ OUT="aix64-gcc"
+ fi
elif [ $OBJECT_MODE -eq 64 ]; then
echo 'Your $OBJECT_MODE was found to be set to 64'
OUT="aix64-cc"