diff options
author | Nick Clifton <nickc@gcc.gnu.org> | 2011-06-06 10:34:35 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2011-06-06 10:34:35 +0000 |
commit | a864a70be43edc3ac8ec5f8449e096c2f81e29a0 (patch) | |
tree | f8ad27e003a8b48065d437136059f262fedda864 | |
parent | 9baa43b6a875943b9e78d587784c600f64f4136e (diff) | |
download | gcc-a864a70be43edc3ac8ec5f8449e096c2f81e29a0.zip gcc-a864a70be43edc3ac8ec5f8449e096c2f81e29a0.tar.gz gcc-a864a70be43edc3ac8ec5f8449e096c2f81e29a0.tar.bz2 |
oops - omitted from previous delta.
From-SVN: r174692
-rwxr-xr-x | config.guess | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/config.guess b/config.guess index 187cd54..b02565c 100755 --- a/config.guess +++ b/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011 Free Software Foundation, Inc. -timestamp='2011-02-02' +timestamp='2011-06-03' # 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 @@ -882,7 +882,13 @@ EOF then echo ${UNAME_MACHINE}-unknown-linux-gnu else - echo ${UNAME_MACHINE}-unknown-linux-gnueabi + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + fi fi exit ;; avr32*:Linux:*:*) @@ -972,7 +978,7 @@ EOF echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; tile*:Linux:*:*) - echo ${UNAME_MACHINE}-tilera-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu |