From 662704e75a872646dcbcae8c018e17ba8cacdddc Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Wed, 5 Sep 2001 08:39:06 +0000 Subject: [PATCH] t-elf (EXTRA_PARTS): Use EXTRA_MULTILIB_PARTS instead. * config/mips/t-elf (EXTRA_PARTS): Use EXTRA_MULTILIB_PARTS instead. (crti.o): Prefix name of object file with $(T). (crtn.o): Likewise. From-SVN: r45403 --- gcc/ChangeLog | 6 ++++++ gcc/config/mips/t-elf | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a924cc9f627..93113e7d9d60 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-09-05 Richard Sandiford + + * config/mips/t-elf (EXTRA_PARTS): Use EXTRA_MULTILIB_PARTS instead. + (crti.o): Prefix name of object file with $(T). + (crtn.o): Likewise. + 2001-09-05 David S. Miller * config/sparc/linux.h: Set CPLUSPLUS_CPP_SPEC. diff --git a/gcc/config/mips/t-elf b/gcc/config/mips/t-elf index 955edf982bd0..0e8da0474e51 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 -- 2.47.2