diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2009-11-20 10:10:09 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gnu.org> | 2009-11-20 10:10:09 +0000 |
commit | e12dec02a9728d39f3304372baeade99b0362371 (patch) | |
tree | ace47981f9ed66b60ea5166afecd77985f722e21 /config.guess | |
parent | 6ee4cb2db4ed0a757e4bfba9c4e1778ac6ab4854 (diff) | |
download | gdb-e12dec02a9728d39f3304372baeade99b0362371.zip gdb-e12dec02a9728d39f3304372baeade99b0362371.tar.gz gdb-e12dec02a9728d39f3304372baeade99b0362371.tar.bz2 |
2009-11-20 Paolo Bonzini <bonzini@gnu.org>
* config.guess: Sync with upstream and gcc.
* config.sub: Sync with upstream and gcc.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/config.guess b/config.guess index 4ac8133..d53e309 100755 --- a/config.guess +++ b/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 # Free Software Foundation, Inc. -timestamp='2009-09-23' +timestamp='2009-11-19' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -807,12 +807,12 @@ EOF i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - *:Interix*:[3456]*) + *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; - EM64T | authenticamd | genuineintel) + authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) @@ -891,7 +891,15 @@ EOF echo frv-unknown-linux-gnu exit ;; i*86:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-gnu + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu @@ -918,11 +926,7 @@ EOF #endif #endif EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) |