diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2005-12-12 10:54:49 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2005-12-12 10:54:49 +0000 |
commit | 64f182bdf4ffaa01956e0dade4deb8836366b8eb (patch) | |
tree | 1f1bd597cd6e75f5f40be591df079514f45ed2cb /gcc | |
parent | dcc8a60324e08cdd4b9524c9326eebf28be79ca7 (diff) | |
download | gcc-64f182bdf4ffaa01956e0dade4deb8836366b8eb.zip gcc-64f182bdf4ffaa01956e0dade4deb8836366b8eb.tar.gz gcc-64f182bdf4ffaa01956e0dade4deb8836366b8eb.tar.bz2 |
config.gcc (ms1): Replace with ...
* config.gcc (ms1): Replace with ...
(mt): ... this.
* config/ms1: Rename to ...
* config/mt: ... here. Rename ms1 files to mt.
* config/mt/mt.c: Adjust gt-mt.h #include.
* config/mt/t-mt (LIB1ASMSRCS, LIB2FUNCS_EXTRA): Adjust.
(crti.o, crtn.o): Adjust file names.
* config.sub: Replace ms1 with mt. Allow ms1 as an alias.
From-SVN: r108403
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 10 | ||||
-rw-r--r-- | gcc/config/mt/mt.c | 2 | ||||
-rw-r--r-- | gcc/config/mt/t-mt | 12 |
3 files changed, 17 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1ec497a..8f32189 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,13 @@ +2005-12-12 Nathan Sidwell <nathan@codesourcery.com> + + * config.gcc (ms1): Replace with ... + (mt): ... this. + * config/ms1: Rename to ... + * config/mt: ... here. Rename ms1 files to mt. + * config/mt/mt.c: Adjust gt-mt.h #include. + * config/mt/t-mt (LIB1ASMSRCS, LIB2FUNCS_EXTRA): Adjust. + (crti.o, crtn.o): Adjust file names. + 2005-12-12 Gabriel Dos Reis <gdr@integrable-solutions.net> * varray.h: Allow compilation with a C++ compiler. diff --git a/gcc/config/mt/mt.c b/gcc/config/mt/mt.c index 3695f0f..74a77e8 100644 --- a/gcc/config/mt/mt.c +++ b/gcc/config/mt/mt.c @@ -2495,4 +2495,4 @@ const struct attribute_spec ms1_attribute_table[]; struct gcc_target targetm = TARGET_INITIALIZER; -#include "gt-ms1.h" +#include "gt-mt.h" diff --git a/gcc/config/mt/t-mt b/gcc/config/mt/t-mt index 3093fc4..5e400eb 100644 --- a/gcc/config/mt/t-mt +++ b/gcc/config/mt/t-mt @@ -25,10 +25,10 @@ CROSS_LIBGCC1 = # Alternatively if assembler functions *are* needed then define the # entries below: # CROSS_LIBGCC1 = libgcc1-asm.a -# LIB1ASMSRC = ms1/lib1funcs.asm +# LIB1ASMSRC = mt/lib1funcs.asm # LIB1ASMFUNCS = _udivsi3 etc... -LIB2FUNCS_EXTRA = $(srcdir)/config/ms1/lib2extra-funcs.c +LIB2FUNCS_EXTRA = $(srcdir)/config/mt/lib2extra-funcs.c # If any special flags are necessary when building libgcc2 put them here. # @@ -49,11 +49,11 @@ dp-bit.c: $(srcdir)/config/fp-bit.c cat $(srcdir)/config/fp-bit.c > dp-bit.c # Assemble startup files. -crti.o: $(srcdir)/config/ms1/crti.asm $(GCC_PASSES) - $(GCC_FOR_TARGET) -c -o crti.o -x assembler $(srcdir)/config/ms1/crti.asm +crti.o: $(srcdir)/config/mt/crti.asm $(GCC_PASSES) + $(GCC_FOR_TARGET) -c -o crti.o -x assembler $(srcdir)/config/mt/crti.asm -crtn.o: $(srcdir)/config/ms1/crtn.asm $(GCC_PASSES) - $(GCC_FOR_TARGET) -c -o crtn.o -x assembler $(srcdir)/config/ms1/crtn.asm +crtn.o: $(srcdir)/config/mt/crtn.asm $(GCC_PASSES) + $(GCC_FOR_TARGET) -c -o crtn.o -x assembler $(srcdir)/config/mt/crtn.asm # Enable the following if multilibs are needed. # See gcc/genmultilib, gcc/gcc.texi and gcc/tm.texi for a |