From: Joel Sherrill Date: Wed, 29 Jan 2003 15:52:58 +0000 (+0000) Subject: re PR bootstrap/9293 ([m68k-elf/rtems] config/m68k/t-crtstuff bug) X-Git-Tag: releases/gcc-3.2.2~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ed8b7cf3551ff0390455601f81bc408c8d627d0;p=thirdparty%2Fgcc.git re PR bootstrap/9293 ([m68k-elf/rtems] config/m68k/t-crtstuff bug) 2003-01-29 Joel Sherrill * config/m68k/t-crtstuff: Replace spaces with tabs, add $(MULTILIB_CFLAGS) as compiler option and multilib crtbegin/end.o. This issue was tracked as PR9293. From-SVN: r62087 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 349dbde87fc9..225aac277398 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-01-29 Joel Sherrill + + * config/m68k/t-crtstuff: Replace spaces with tabs, add + $(MULTILIB_CFLAGS) as compiler option and multilib crtbegin/end.o. + This issue was tracked as PR9293. + 2003-01-29 Joel Sherrill * config.gcc (hppa1.1-rtems): Did not include t-rtems nor enable diff --git a/gcc/config/m68k/t-crtstuff b/gcc/config/m68k/t-crtstuff index b05764de726e..a8bdb502d667 100644 --- a/gcc/config/m68k/t-crtstuff +++ b/gcc/config/m68k/t-crtstuff @@ -1,8 +1,10 @@ +EXTRA_MULTILIB_PARTS=crtbegin.o crtend.o crti.o crtn.o + # Add flags here as required. CRTSTUFF_T_CFLAGS = # Assemble startup files. $(T)crti.o: $(srcdir)/config/m68k/crti.s $(GCC_PASSES) - $(GCC_FOR_TARGET) -c -o $(T)crti.o $(srcdir)/config/m68k/crti.s + $(GCC_FOR_TARGET) $(MULTILIB_CFLAGS) -c -o $(T)crti.o $(srcdir)/config/m68k/crti.s $(T)crtn.o: $(srcdir)/config/m68k/crtn.s $(GCC_PASSES) - $(GCC_FOR_TARGET) -c -o $(T)crtn.o $(srcdir)/config/m68k/crtn.s + $(GCC_FOR_TARGET) $(MULTILIB_CFLAGS) -c -o $(T)crtn.o $(srcdir)/config/m68k/crtn.s