diff options
author | Maxim Grigoriev <maxim2405@gmail.com> | 2009-07-24 02:13:28 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-07-24 02:13:28 +0200 |
commit | cd0b1ce3b7934c631477ad3262316199b73cce89 (patch) | |
tree | 6199e12112360fcbcda73c09f5c51fc05b9bc7d8 /package/gnuconfig/config.guess | |
parent | 6b27f42180f7d8d833aa1c1abc47d108de2a796c (diff) |
package/gnuconfig: xtensa support
Part of #163.
Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gnuconfig/config.guess')
-rwxr-xr-x | package/gnuconfig/config.guess | 6 |
1 files changed, 3 insertions, 3 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 |