mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
./config: detect x32-only environment.
RT#4583 Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
3b92e51899
commit
c5c0cac5c1
7
config
7
config
@ -640,7 +640,12 @@ case "$GUESSOS" in
|
||||
#fi
|
||||
OUT="linux64-s390x"
|
||||
;;
|
||||
x86_64-*-linux?) OUT="linux-x86_64" ;;
|
||||
x86_64-*-linux?)
|
||||
if $CC -dM -E -x c /dev/null 2>&1 | grep -q ILP32 > /dev/null; then
|
||||
OUT="linux-x32"
|
||||
else
|
||||
OUT="linux-x86_64"
|
||||
fi ;;
|
||||
*86-*-linux2) OUT="linux-elf"
|
||||
if [ "$GCCVER" -gt 28 ]; then
|
||||
if grep '^model.*Pentium' /proc/cpuinfo >/dev/null ; then
|
||||
|
Loading…
Reference in New Issue
Block a user