This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Patch: support *-unknown-* targets
- To: green at cygnus dot com
- Subject: Re: Patch: support *-unknown-* targets
- From: Tom Tromey <tromey at redhat dot com>
- Date: 12 Feb 2001 14:14:02 -0700
- Cc: java-patches at gcc dot gnu dot org
- References: <200102110723.XAA24355@makita.cygnus.com>
- Reply-To: tromey at redhat dot com
>>>>> "Anthony" == Anthony Green <green@cygnus.com> writes:
Anthony> 2001-02-10 Anthony Green <green@redhat.com>
Anthony> * configure.in: Set USING_LIBRARY_PRELOAD.
Anthony> Obey CONFIGURE_HOST_GC.
Anthony> * configure: Rebuilt.
Anthony> * configure.host: Deal with *-unknown-* hosts.
Anthony> * gnu/gcj/runtime/natFirstThread.cc: Obey USING_LIBRARY_PRELOAD.
Anthony> +case "${host}" in
Anthony> + *-unknown-*)
Is this really the right thing to do?
There are some hosts with `-unknown-' that aren't really "unknown" --
"unknown" is just a placeholder since there isn't a better name.
Eg search for `-openbsd' in config.guess.
Could we use some other mechanism, like defaulting to "know nothing"
and then enabling functionality for the platforms we do recognize?
Tom