This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: lobotomizing libgcj
- To: Tony Kimball <alk at pobox dot com>
- Subject: Re: lobotomizing libgcj
- From: Jeff Sturm <jsturm at one-point dot com>
- Date: Fri, 11 May 2001 20:18:47 -0400 (EDT)
- cc: java at gcc dot gnu dot org
On Fri, 11 May 2001, Tony Kimball wrote:
> My thought is that most people focussed on size will be linking
> statically, as am I.
One option, if you can afford the size and your target has a filesystem,
may be keeping the interpreter and minimizing the number of classes
compiled in. Classes that are not commonly used could then be
interpreted. You'd probably need to link all classes with native
methods, but there really aren't that many.
You'd still need to decouple things a bit, maybe using weak references
like Bryce suggested.
Jeff