This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Patch: chorusos configury
- To: "Alexandre Oliva" <aoliva at redhat dot com>, "Mark Mitchell" <mark at codesourcery dot com>
- Subject: Patch: chorusos configury
- From: "Anthony Green" <green at redhat dot com>
- Date: Mon, 23 Apr 2001 09:35:51 -0700
- Cc: <jsturm at one-point dot com>, <java at gcc dot gnu dot org>, "Gcc-Patches at Gcc dot Gnu. Org" <gcc-patches at gcc dot gnu dot org>, "Geoffk at Cygnus dot Com" <geoffk at cygnus dot com>, "Chandra Chavva" <cchavva at cygnus dot com>
- Reply-To: <green at redhat dot com>
Alex wrote:
> No. I only want to turn on gcj everywhere, which is what
> build_by_default for Java will accomplish. AFAIK, ${libgcj} was put
> in noconfigdirs of all platforms in which it wasn't known to work or
> to being close to work.
It was, but at least one target was added with no explicit disabling of
libgcj since java was disabled. The sooner we reenable java the better.
The chorusos configury was also in the wrong switch statement. This patch
fixes both problems. Ok for branch and trunk?
Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
* configure.in: Move *-chorusos target case to the proper switch.
Disable libgcj.
Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/configure.in,v
retrieving revision 1.90.2.6
diff -u -p -p -r1.90.2.6 configure.in
--- configure.in 2001/04/02 01:30:20 1.90.2.6
+++ configure.in 2001/04/23 16:16:43
@@ -348,9 +348,6 @@ fi
# per-target:
case "${target}" in
- *-*-chorusos)
- noconfigdirs="$noconfigdirs target-newlib target-libgloss"
- ;;
v810*)
target_makefile_frag="${target_makefile_frag} config/mt-v810"
;;
@@ -589,6 +586,9 @@ case "${host}" in
esac
case "${target}" in
+ *-*-chorusos)
+ noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}"
+ ;;
*-*-netware)
noconfigdirs="$noconfigdirs ${libstdcxx_version} target-librx
target-newli\
b target-libiberty target-libgloss ${libgcj}"
;;
AG