diff options
Diffstat (limited to 'package/gnuconfig')
-rwxr-xr-x | package/gnuconfig/config.guess | 6 | ||||
-rwxr-xr-x | package/gnuconfig/config.sub | 6 | ||||
-rw-r--r-- | package/gnuconfig/patches/config.xtensa.glob.patch | 44 | ||||
-rw-r--r-- | package/gnuconfig/testsuite/config-sub.data | 1 |
4 files changed, 53 insertions, 4 deletions
diff --git a/package/gnuconfig/config.guess b/package/gnuconfig/config.guess index ebf353e3d..ced32b63a 100755 --- a/package/gnuconfig/config.guess +++ b/package/gnuconfig/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. -timestamp='2007-07-22' +timestamp='2009-07-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 @@ -971,8 +971,8 @@ EOF x86_64:Linux:*:*) echo x86_64-unknown-linux-${LIBC} exit ;; - xtensa:Linux:*:*) - echo xtensa-unknown-linux-${LIBC} + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so diff --git a/package/gnuconfig/config.sub b/package/gnuconfig/config.sub index 392e21fc2..efbb230f4 100755 --- a/package/gnuconfig/config.sub +++ b/package/gnuconfig/config.sub @@ -370,10 +370,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) diff --git a/package/gnuconfig/patches/config.xtensa.glob.patch b/package/gnuconfig/patches/config.xtensa.glob.patch new file mode 100644 index 000000000..4b37aa77f --- /dev/null +++ b/package/gnuconfig/patches/config.xtensa.glob.patch @@ -0,0 +1,44 @@ +diff -rNdup config-orig/config.guess config/config.guess +--- config-orig/config.guess 2007-11-13 16:31:20.000000000 -0800 ++++ config/config.guess 2007-11-14 00:26:39.000000000 -0800 +@@ -954,8 +954,8 @@ EOF + x86_64:Linux:*:*) + echo x86_64-unknown-linux-gnu + exit ;; +- xtensa:Linux:*:*) +- echo xtensa-unknown-linux-gnu ++ xtensa*:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + # The BFD linker knows what the default object file format is, so +diff -rNdup config-orig/config.sub config/config.sub +--- config-orig/config.sub 2007-11-13 16:31:20.000000000 -0800 ++++ config/config.sub 2007-11-14 00:48:37.000000000 -0800 +@@ -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) +diff -rNdup config-orig/testsuite/config-sub.data config/testsuite/config-sub.data +--- config-orig/testsuite/config-sub.data 2007-11-13 15:56:17.000000000 -0800 ++++ config/testsuite/config-sub.data 2007-11-14 00:31:22.000000000 -0800 +@@ -109,6 +109,7 @@ fido-elf fido-unknown-elf + fido fido-unknown-none + xtensa-elf xtensa-unknown-elf + xtensa-linux xtensa-unknown-linux-gnu ++xtensa_dc232b-linux xtensa_dc232b-unknown-linux-gnu + i386-drops1.0 i386-pc-drops1.0 + mep mep-unknown-elf + mep-elf mep-unknown-elf diff --git a/package/gnuconfig/testsuite/config-sub.data b/package/gnuconfig/testsuite/config-sub.data index 0f2272a14..2a5e1f1eb 100644 --- a/package/gnuconfig/testsuite/config-sub.data +++ b/package/gnuconfig/testsuite/config-sub.data @@ -109,6 +109,7 @@ fido-elf fido-unknown-elf fido fido-unknown-none xtensa-elf xtensa-unknown-elf xtensa-linux xtensa-unknown-linux-gnu +xtensa_dc232b-linux xtensa_dc232b-unknown-linux-gnu i386-drops1.0 i386-pc-drops1.0 mep mep-unknown-elf mep-elf mep-unknown-elf |