This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/30370] Build failure in libgcc2 powitf2 with ICE in gen_reg_rtx
- From: "rask at sygehus dot dk" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 6 Jan 2007 14:28:07 -0000
- Subject: [Bug target/30370] Build failure in libgcc2 powitf2 with ICE in gen_reg_rtx
- References: <bug-30370-12574@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #5 from rask at sygehus dot dk 2007-01-06 14:28 -------
The condition in t-ppccomm is written just like the example in the GNU Make
documentation ("Conditionals that Test Flags"), except for the missing
parentheses.
Indeed toplevel libgcc fixes this, revision 120505 doesn't have this problem.
joseph@codesourcery.com wrote:
> If we add
> ifeq (,$(findstring gnuspe,$(target)))
> to the condition as well, then that should complete letting 4.1 and 4.2
> build properly out of the box for SPE.
Like
ifneq (,$(findstring gnu,$(target)))
ifeq (,$(findstring gnuspe,$(target)))
...
endif
endif
?
How about s/gnuspe/spe/ in case someone comes up with a powerpc-gnufubarspe
target?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30370