This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: PR 30370


I have applied this patch to the GCC 4.1 branch to fix PR 30370, which
was a PowerPC bootstrap failure.  Thanks to Rask for the patch, David
and Joseph for reviewing, and Richard G. for testing.

--
Mark Mitchell
CodeSourcery
mark@codesourcery.com
(650) 331-3385 x713

2007-02-06  Rask Ingemann Lamberisen  <rask@sygehus.dk>

	PR 30370 
	* config/rs6000/t-ppccomm: Correct Makefile typo.

Index: src/gcc/gcc/config/rs6000/t-ppccomm
===================================================================
--- src/gcc/gcc/config/rs6000/t-ppccomm	(revision 120546)
+++ src/gcc/gcc/config/rs6000/t-ppccomm	(working copy)
@@ -11,7 +11,8 @@
 tramp.S: $(srcdir)/config/rs6000/tramp.asm
 	cat $(srcdir)/config/rs6000/tramp.asm > tramp.S
 
-ifneq (,$findstring gnu,$(target))
+ifneq (,$(findstring gnu,$(target)))
+ifeq (,$(findstring spe,$(target)))
 TARGET_LIBGCC2_CFLAGS += -specs=ldblspecs
 
 SHLIB_MAPFILES += $(srcdir)/config/rs6000/libgcc-ppc-glibc.ver
@@ -22,6 +23,7 @@
 ldblspecs: specs
 	sed -e '/cc1_options/{ n; s/$$/ %{!msoft-float:-mlong-double-128}/; }' < specs > $@
 endif
+endif
 
 # Switch synonyms
 MULTILIB_MATCHES_ENDIAN	= mlittle=mlittle-endian mbig=mbig-endian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]