FIX: added 64-bit detection to Maui configure script if uname -m reports 64-bit architecture
git-svn-id: svn://opensvn.adaptivecomputing.com/maui/trunk@93 3f5042e3-fb1d-0410-be18-d6ca2573e517
This commit is contained in:
parent
2b53c6eac6
commit
d4090c46e8
6
configure
vendored
6
configure
vendored
@ -2256,6 +2256,12 @@ echo "$as_me: WARNING: Unsupported OS: $OS, attempting build with OPSYS=$OPSYS"
|
||||
OS="LINUX"
|
||||
fi
|
||||
|
||||
# Configure 64 bit dependent settings
|
||||
BIT64=`uname -m | grep 64`
|
||||
if test -n "$BIT64"; then
|
||||
CFLAGS="$CFLAGS -D__M64"
|
||||
LDFLAGS="$LDFLAGS"
|
||||
fi
|
||||
|
||||
|
||||
# Make generic variable Substitutions
|
||||
|
Loading…
Reference in New Issue
Block a user