mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-29 02:26:36 +12:00
2006-02-23 Ben Elliston <bje@gnu.org>
* config.guess (EM64T:Interix:*:*): New case. * testsuite/config-guess.data: Add test case. 2006-02-23 Mike Frysinger <vapier@gentoo.org> * config.sub (nios, nios2): New. * testsuite/config-sub.data: Add test cases.
This commit is contained in:
parent
b5575eb7cb
commit
9361fb1f04
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2006-02-23 Ben Elliston <bje@gnu.org>
|
||||||
|
|
||||||
|
* config.guess (EM64T:Interix:*:*): New case.
|
||||||
|
* testsuite/config-guess.data: Add test case.
|
||||||
|
|
||||||
|
2006-02-23 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* config.sub (nios, nios2): New.
|
||||||
|
* testsuite/config-sub.data: Add test cases.
|
||||||
|
|
||||||
2006-02-23 Ben Elliston <bje@gnu.org>
|
2006-02-23 Ben Elliston <bje@gnu.org>
|
||||||
|
|
||||||
* config.guess (x86:Interix*:[345]*): Retain full Interix version.
|
* config.guess (x86:Interix*:[345]*): Retain full Interix version.
|
||||||
|
3
config.guess
vendored
3
config.guess
vendored
@ -793,6 +793,9 @@ EOF
|
|||||||
x86:Interix*:[345]*)
|
x86:Interix*:[345]*)
|
||||||
echo i586-pc-interix${UNAME_RELEASE}
|
echo i586-pc-interix${UNAME_RELEASE}
|
||||||
exit ;;
|
exit ;;
|
||||||
|
EM64T:Interix*:[345]*)
|
||||||
|
echo x86_64-unknown-interix${UNAME_RELEASE}
|
||||||
|
exit ;;
|
||||||
[345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
|
[345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
|
||||||
echo i${UNAME_MACHINE}-pc-mks
|
echo i${UNAME_MACHINE}-pc-mks
|
||||||
exit ;;
|
exit ;;
|
||||||
|
4
config.sub
vendored
4
config.sub
vendored
@ -3,7 +3,7 @@
|
|||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
||||||
# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
|
|
||||||
timestamp='2006-01-02'
|
timestamp='2006-02-23'
|
||||||
|
|
||||||
# This file is (in principle) common to ALL GNU software.
|
# This file is (in principle) common to ALL GNU software.
|
||||||
# The presence of a machine in this file suggests that SOME GNU software
|
# The presence of a machine in this file suggests that SOME GNU software
|
||||||
@ -268,6 +268,7 @@ case $basic_machine in
|
|||||||
| mn10200 | mn10300 \
|
| mn10200 | mn10300 \
|
||||||
| mt \
|
| mt \
|
||||||
| msp430 \
|
| msp430 \
|
||||||
|
| nios | nios2 \
|
||||||
| ns16k | ns32k \
|
| ns16k | ns32k \
|
||||||
| or32 \
|
| or32 \
|
||||||
| pdp10 | pdp11 | pj | pjl \
|
| pdp10 | pdp11 | pj | pjl \
|
||||||
@ -350,6 +351,7 @@ case $basic_machine in
|
|||||||
| mmix-* \
|
| mmix-* \
|
||||||
| mt-* \
|
| mt-* \
|
||||||
| msp430-* \
|
| msp430-* \
|
||||||
|
| nios-* | nios2-* \
|
||||||
| none-* | np1-* | ns16k-* | ns32k-* \
|
| none-* | np1-* | ns16k-* | ns32k-* \
|
||||||
| orion-* \
|
| orion-* \
|
||||||
| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
|
| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
|
||||||
|
@ -20,3 +20,4 @@ pc98 7.0 FreeBSD ignored i386-unknown-freebsd7.0
|
|||||||
i586 1.0 SolidBSD ignored i586-unknown-solidbsd1.0
|
i586 1.0 SolidBSD ignored i586-unknown-solidbsd1.0
|
||||||
i686 5.4-1-686 GNU/kFreeBSD ignored i686-unknown-kfreebsd5.4-gnu
|
i686 5.4-1-686 GNU/kFreeBSD ignored i686-unknown-kfreebsd5.4-gnu
|
||||||
i686 1.0.10(0.46/3/2) MSYS_NT-5.1 ignored i686-pc-mingw32
|
i686 1.0.10(0.46/3/2) MSYS_NT-5.1 ignored i686-pc-mingw32
|
||||||
|
EM64T 5.2 Interix ignored x86_64-unknown-interix5.2
|
||||||
|
@ -82,3 +82,7 @@ mb-elf mb-unknown-elf
|
|||||||
microblaze-elf microblaze-unknown-elf
|
microblaze-elf microblaze-unknown-elf
|
||||||
i386-solidbsd i386-pc-solidbsd
|
i386-solidbsd i386-pc-solidbsd
|
||||||
amd64-kfreebsd5.4-gnu x86_64-pc-kfreebsd5.4-gnu
|
amd64-kfreebsd5.4-gnu x86_64-pc-kfreebsd5.4-gnu
|
||||||
|
nios nios-unknown-none
|
||||||
|
nios2 nios2-unknown-none
|
||||||
|
nios-elf nios-unknown-elf
|
||||||
|
nios2-elf nios2-unknown-elf
|
||||||
|
Loading…
x
Reference in New Issue
Block a user