2003-01-29 Joel Sherrill <joel@OARcorp.com>
authorjoel <joel@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 29 Jan 2003 14:57:36 +0000 (14:57 +0000)
committerjoel <joel@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 29 Jan 2003 14:57:36 +0000 (14:57 +0000)
* 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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62080 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/m68k/t-crtstuff

index 63274de..ecc0b68 100644 (file)
@@ -1,5 +1,11 @@
 2003-01-29     Joel Sherrill <joel@OARcorp.com>
 
+       * 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 <joel@OARcorp.com>
+
        * config.gcc (hppa1.1-rtems):  Did not include t-rtems nor enable
        RTEMS threads.
        * config/pa/rtems.h (LIB_SPEC): Use -N when linking.
index b05764d..a8bdb50 100644 (file)
@@ -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