mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
On x86 machines where the compiler supports -m32, use 'linux-x86'
The rationale is that the linux-x86 is the most likely config target to evolve and should therefore be chosen when possible, while linux-elf is mostly reserved for older Linux machines. Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1924)
This commit is contained in:
parent
7fbc0bfdd7
commit
27a451e373
9
config
9
config
@ -640,7 +640,14 @@ case "$GUESSOS" in
|
||||
else
|
||||
OUT="linux-x86_64"
|
||||
fi ;;
|
||||
*86-*-linux2) OUT="linux-elf" ;;
|
||||
*86-*-linux2)
|
||||
# On machines where the compiler understands -m32, prefer a
|
||||
# config target that uses it
|
||||
if $CC -m32 -E -x c /dev/null > /dev/null 2>&1; then
|
||||
OUT="linux-x86"
|
||||
else
|
||||
OUT="linux-elf"
|
||||
fi ;;
|
||||
*86-*-linux1) OUT="linux-aout" ;;
|
||||
*-*-linux?) OUT="linux-generic32" ;;
|
||||
sun4[uv]*-*-solaris2)
|
||||
|
Loading…
x
Reference in New Issue
Block a user