diff options
author | Ben Elliston <bje@gnu.org> | 2007-12-05 03:27:21 +0000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2007-12-05 03:27:21 +0000 |
commit | 7e95d4b86dbfcb995ecba4353b3b6130f53acc42 (patch) | |
tree | 3f54df54c869e437b2dc4fa5dc571b971f40645b /config.sub | |
parent | 86a1bb43f57dee2ed5d3273624475852bb0bf8dd (diff) | |
download | newlib-7e95d4b86dbfcb995ecba4353b3b6130f53acc42.zip newlib-7e95d4b86dbfcb995ecba4353b3b6130f53acc42.tar.gz newlib-7e95d4b86dbfcb995ecba4353b3b6130f53acc42.tar.bz2 |
* config.sub, config.guess: Update from upstream sources.
Diffstat (limited to 'config.sub')
-rwxr-xr-x | config.sub | 32 |
1 files changed, 30 insertions, 2 deletions
@@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. -timestamp='2007-06-28' +timestamp='2007-12-05' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -369,10 +369,14 @@ case $basic_machine in | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa-* \ + | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-*) ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) @@ -443,6 +447,14 @@ case $basic_machine in basic_machine=ns32k-sequent os=-dynix ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; c90) basic_machine=c90-cray os=-unicos @@ -668,6 +680,14 @@ case $basic_machine in basic_machine=m68k-isi os=-sysv ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; m88k-omron*) basic_machine=m88k-omron ;; @@ -813,6 +833,14 @@ case $basic_machine in basic_machine=i860-intel os=-osf ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; pbd) basic_machine=sparc-tti ;; |