re PR target/34025 (Warning when compiling with -m64 -ffast-math on Intel Darwin)
authorJack Howarth <howarth@bromo.med.uc.edu>
Sun, 16 Dec 2007 23:22:30 +0000 (23:22 +0000)
committerUros Bizjak <uros@gcc.gnu.org>
Sun, 16 Dec 2007 23:22:30 +0000 (00:22 +0100)
        PR target/34025
        * config/i386/t-crtpc: Add $(MULTILIB_CFLAGS).
        * config/i386/t-crtfm: Likewise.

From-SVN: r130998

gcc/ChangeLog
gcc/config/i386/t-crtfm
gcc/config/i386/t-crtpc

index e5d7037..c499895 100644 (file)
@@ -1,3 +1,9 @@
+2007-12-17  Jack Howarth  <howarth@bromo.med.uc.edu>
+
+       PR target/34025
+       * config/i386/t-crtpc: Add $(MULTILIB_CFLAGS).
+       * config/i386/t-crtfm: Likewise.
+
 2007-12-17  Uros Bizjak  <ubizjak@gmail.com>
 
        * config/i386/i386.h (WIDEST_HARDWARE_FP_SIZE): Define.
index f60eab5..4fa27e9 100644 (file)
@@ -2,6 +2,7 @@ EXTRA_PARTS += crtfastmath.o
 
 $(T)crtfastmath.o: $(srcdir)/config/i386/crtfastmath.c \
   $(srcdir)/config/i386/cpuid.h $(GCC_PASSES)
-       $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -msse -minline-all-stringops -c \
+       $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(MULTILIB_CFLAGS) \
+               -msse -minline-all-stringops -c \
                $(srcdir)/config/i386/crtfastmath.c \
                -o $(T)crtfastmath$(objext)
index af8947b..bc24bed 100644 (file)
@@ -1,16 +1,16 @@
 EXTRA_PARTS += crtprec32.o crtprec64.o crtprec80.o
 
 $(T)crtprec32.o: $(srcdir)/config/i386/crtprec.c $(GCC_PASSES)
-       $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -D__PREC=32 -c \
+       $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(MULTILIB_CFLAGS) -D__PREC=32 -c \
                $(srcdir)/config/i386/crtprec.c \
                -o $(T)crtprec32$(objext)
 
 $(T)crtprec64.o: $(srcdir)/config/i386/crtprec.c $(GCC_PASSES)
-       $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -D__PREC=64 -c \
+       $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(MULTILIB_CFLAGS) -D__PREC=64 -c \
                $(srcdir)/config/i386/crtprec.c \
                -o $(T)crtprec64$(objext)
 
 $(T)crtprec80.o: $(srcdir)/config/i386/crtprec.c $(GCC_PASSES)
-       $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -D__PREC=80 -c \
+       $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(MULTILIB_CFLAGS) -D__PREC=80 -c \
                $(srcdir)/config/i386/crtprec.c \
                -o $(T)crtprec80$(objext)