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 e5d703766885b4493e7cd42dd22a357935d7a513..c4998952678003e51c11459993f205ed7c5eddd3 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 f60eab52609819e0085576c01ba12f2368bc3586..4fa27e91ca5c7356d92b58fd88247c06a71e6dc4 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 af8947bff9003da0f94faea509dac7ebfccf8621..bc24bedf348930e48581661fc59ee53636463d84 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)