diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-12-18 23:29:46 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-12-18 23:29:46 +0100 |
commit | 96559f4610f8035315e426fbedcb890a809d6921 (patch) | |
tree | 528476fbe4736783791bbf91e1e22f77336005dd /scripts/config.guess | |
parent | 80cda526e085c5dad43d76a7fd2cc6e3d9506bab (diff) | |
download | crosstool-ng-96559f4610f8035315e426fbedcb890a809d6921.tar.gz crosstool-ng-96559f4610f8035315e426fbedcb890a809d6921.tar.bz2 crosstool-ng-96559f4610f8035315e426fbedcb890a809d6921.zip |
scripts: update config.{sub,guess}
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'scripts/config.guess')
-rwxr-xr-x | scripts/config.guess | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/config.guess b/scripts/config.guess index 115f944a..4c8f032e 100755 --- a/scripts/config.guess +++ b/scripts/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. -timestamp='2010-04-03' +timestamp='2010-09-24' # 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 @@ -552,7 +552,7 @@ EOF echo rs6000-ibm-aix3.2 fi exit ;; - *:AIX:*:[456]) + *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 @@ -968,6 +968,9 @@ EOF sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-tilera-linux-gnu + exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; @@ -1231,6 +1234,9 @@ EOF *:QNX:*:4*) echo i386-pc-qnx exit ;; + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; |