This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug bootstrap/19970] New: Java Unnecessarily Disabled for MinGW
- From: "rmathew at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 15 Feb 2005 05:08:46 -0000
- Subject: [Bug bootstrap/19970] New: Java Unnecessarily Disabled for MinGW
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
For native and cross builds to MinGW (mingw32 or i386-pc-mingw32), Java and
libgcj are unnecessarily disabled by the top-level configure - they have been
building just fine for quite some time now in mainline. To get libgcj to build,
one has to explicitly specify --enable-libgcj to the configure command.
The following simple change fixes this (configure needs to
be regenerated):
Index: configure.in
===================================================================
--- configure.in 2005-02-15 10:36:30.000000000 +0530
+++ configure.in 2005-02-15 10:37:01.000000000 +0530
@@ -588,5 +588,5 @@ case "${target}" in
i[[3456789]]86-*-mingw32*)
target_configdirs="$target_configdirs target-mingw"
- noconfigdirs="$noconfigdirs expect target-libgloss ${libgcj}"
+ noconfigdirs="$noconfigdirs expect target-libgloss"
# Can't build gdb for mingw32 if not native.
--
Summary: Java Unnecessarily Disabled for MinGW
Product: gcc
Version: 4.0.0
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bootstrap
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: rmathew at gcc dot gnu dot org
CC: gcc-bugs at gcc dot gnu dot org
GCC build triplet: i686-pc-linux-gnu
GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i386-pc-mingw32
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19970