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]

Re: [patch] fix bootstrap in libgcc for PowerPC FreeBSD


On 09.08.11 13:59, Rainer Orth wrote:
Hi Andreas,

the patch below survives bootstrap stage-1 on PowerPC FreeBSD successfully.
W/o patch we try to fliter-out ibm-ldouble.c. So from my understanding the
pattern ibm-ldouble.c does never match since there is a path prepended to
the file name.
With the patch we look for everything which contains ibm-ldouble.c...

Is this ok for head?

while I cannot approve it, I'm pretty sure this counts as obvious.

I committed this one.


Thanks,
Andreas

Sorry for the breakage.


Rainer


2011-08-05 Andreas Tobler<andreast@fgznet.ch>

	* config/rs6000/t-freebsd: Add a wildcard to the filter to find
	the file with the path.

I'd write it as


* config/rs6000/t-freebsd (LIB2ADD): Add wildcard.

Index: config/rs6000/t-freebsd
===================================================================
--- config/rs6000/t-freebsd	(revision 177472)
+++ config/rs6000/t-freebsd	(working copy)
@@ -19,4 +19,4 @@
  #<http://www.gnu.org/licenses/>.

  # We do not want to build ibm-ldouble.c.
-LIB2ADD := $(filter-out ibm-ldouble.c, $(LIB2ADD))
+LIB2ADD := $(filter-out %ibm-ldouble.c, $(LIB2ADD))



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