This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: Add x86 darwin java support
DJ Delorie wrote:
Andreas Tobler <toa@pop.agri.ch> writes:
2006-12-09 Andreas Tobler <a.tobler@schweiz.org>
* configure.in: Correct x86 darwin support for libjava to powerpc
and i?86 only.
* configure: Regenerate.
I think this qualifies as obvious, please commit :)
Ok, I committed this patch to trunk and 4.2. I hope it is ok.
src too, please.
I need a helpful soul here. I do not have write access to src.
But afais, the configure.in is synced in a non consitant way on src. The
first iteration of the 'x86 java support for darwin' did not get in.
So here is the piece which would be needed. According to the webcvs,
plus the regeneration of configure:
Index: configure.in
===================================================================
--- configure.in (revision 119677)
+++ configure.in (working copy)
@@ -368,7 +368,7 @@
*-*-chorusos)
noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
;;
- powerpc-*-darwin*)
+ powerpc-*-darwin* | i[[3456789]]86-*-darwin*)
noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes gdb gprof"
noconfigdirs="$noconfigdirs sim target-rda"
;;
Thanks for any helper.
Andreas