mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
Support for pre-BFD versions of Linux ld.
This commit is contained in:
parent
1076fc3f18
commit
a026e6951d
9
config.guess
vendored
9
config.guess
vendored
@ -300,7 +300,14 @@ EOF
|
||||
echo `echo ${UNAME_MACHINE}|sed -e 's,/.*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
|
||||
exit 0 ;;
|
||||
*:Linux:*:*)
|
||||
# Determine whether the default compiler is a.out or elf
|
||||
# Systems without a BFD linker
|
||||
if test -d /usr/lib/ldscripts/. ; then
|
||||
:
|
||||
else
|
||||
echo "${UNAME_MACHINE}-unknown-linuxoldld"
|
||||
exit 0
|
||||
fi
|
||||
# Determine whether the default compiler is a.out or elf
|
||||
cat >dummy.c <<EOF
|
||||
main(argc, argv)
|
||||
int argc;
|
||||
|
Loading…
Reference in New Issue
Block a user