This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: ignoring undefined references
- From: Tom Tromey <tromey at redhat dot com>
- To: Marco Trudel <mtrudel at gmx dot ch>
- Cc: GCJ <java at gcc dot gnu dot org>
- Date: 25 Jun 2006 19:46:57 -0600
- Subject: Re: ignoring undefined references
- References: <449EAEBF.5030700@gmx.ch>
- Reply-to: tromey at redhat dot com
>>>>> "Marco" == Marco Trudel <mtrudel@gmx.ch> writes:
Marco> Is it possible to ignore undefined references?
Marco> The problem is that most of the public available java libraries
Marco> (e.g. xerces; http://xerces.apache.org/xerces-j/) use external classes
Marco> which they do not provide because they're barely used. So, if such a
Marco> library is used, two or three new libraries have to be searched and
Marco> compiled too. But they have the same problem...
Marco> There come more and more classes into the executables but none of them
Marco> will ever be used...
Compiling with -findirect-dispatch often helps this.
Tom