diff options
author | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-12-16 12:57:40 +0000 |
---|---|---|
committer | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-12-16 12:57:40 +0000 |
commit | c42387cc1aa0d130f77108d1a004c15337e64f2b (patch) | |
tree | 3539ba04e446b3a5af9407eab4349427cd530db0 /config.sub | |
parent | 516bd6f8534dd90489b12f8e92a2afafb1721f7e (diff) | |
download | gcc-c42387cc1aa0d130f77108d1a004c15337e64f2b.tar.gz |
* configure.in: Replace ms1 with mt.
* configure: Rebuilt.
* config.sub: Replace ms1 with mt. Allow ms1 as an alias.
* gcc/config.gcc (ms1): Replace with ...
(mt): ... this.
* gcc/config/ms1: Rename to ...
* gcc/config/mt: ... here. Rename ms1 files to mt.
* gcc/config/mt/mt.c: Adjust gt-mt.h #include.
* gcc/config/mt/t-mt (LIB1ASMSRCS, LIB2FUNCS_EXTRA): Adjust.
(crti.o, crtn.o): Adjust file names.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_1-branch@108649 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config.sub')
-rwxr-xr-x | config.sub | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/config.sub b/config.sub index a4aba165da3..eb6b3eb89ce 100755 --- a/config.sub +++ b/config.sub @@ -3,7 +3,7 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2005-11-13' +timestamp='2005-12-06' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -265,7 +265,7 @@ case $basic_machine in | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ - | ms1 \ + | mt \ | msp430 \ | ns16k | ns32k \ | or32 \ @@ -295,6 +295,9 @@ case $basic_machine in m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; + ms1) + basic_machine=mt-unknown + ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. @@ -344,7 +347,7 @@ case $basic_machine in | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ - | ms1-* \ + | mt-* \ | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ @@ -704,6 +707,9 @@ case $basic_machine in basic_machine=i386-pc os=-msdos ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; mvs) basic_machine=i370-ibm os=-mvs |