diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-05 08:39:06 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-05 08:39:06 +0000 |
commit | b69075973b47a2ec26bafa74ab1062b12e15f61a (patch) | |
tree | e7406b55d4f8132df4818499e2bf87662af56de8 /gcc/config/mips | |
parent | cf26d7ac12c5f422efc539c45135af19bb6a7302 (diff) | |
download | gcc-b69075973b47a2ec26bafa74ab1062b12e15f61a.tar.gz |
* config/mips/t-elf (EXTRA_PARTS): Use EXTRA_MULTILIB_PARTS instead.
(crti.o): Prefix name of object file with $(T).
(crtn.o): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45403 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips')
-rw-r--r-- | gcc/config/mips/t-elf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/mips/t-elf b/gcc/config/mips/t-elf index 955edf982bd..0e8da0474e5 100644 --- a/gcc/config/mips/t-elf +++ b/gcc/config/mips/t-elf @@ -6,11 +6,11 @@ CRTSTUFF_T_CFLAGS = -G 0 # Assemble startup files. $(T)crti.o: $(srcdir)/config/mips/crti.asm $(GCC_PASSES) $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(MULTILIB_CFLAGS) $(INCLUDES) \ - -c -o crti.o -x assembler-with-cpp $(srcdir)/config/mips/crti.asm + -c -o $(T)crti.o -x assembler-with-cpp $(srcdir)/config/mips/crti.asm $(T)crtn.o: $(srcdir)/config/mips/crtn.asm $(GCC_PASSES) $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(MULTILIB_CFLAGS) $(INCLUDES) \ - -c -o crtn.o -x assembler-with-cpp $(srcdir)/config/mips/crtn.asm + -c -o $(T)crtn.o -x assembler-with-cpp $(srcdir)/config/mips/crtn.asm LIB1ASMSRC = mips/mips16.S LIB1ASMFUNCS = _m16addsf3 _m16subsf3 _m16mulsf3 _m16divsf3 \ @@ -56,7 +56,7 @@ fp-bit.c: $(srcdir)/config/fp-bit.c MULTILIB_OPTIONS = msoft-float/msingle-float EL/EB mips1/mips3 MULTILIB_DIRNAMES = soft-float single el eb mips1 mips3 MULTILIB_MATCHES = msingle-float=m4650 -EXTRA_PARTS = crtbegin.o crtend.o crti.o crtn.o +EXTRA_MULTILIB_PARTS = crtbegin.o crtend.o crti.o crtn.o LIBGCC = stmp-multilib INSTALL_LIBGCC = install-multilib |