This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: ARM support
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Geert Bevin <gbevin at uwyn dot com>
- Cc: java at gcc dot gnu dot org
- Date: Sat, 28 Jun 2003 19:43:41 -0400 (EDT)
- Subject: Re: ARM support
On 29 Jun 2003, Geert Bevin wrote:
> Strange though, since with statically linked executables it should not
> even need the classpath.
That'll happen for classes loaded by reflection.
> Any idea why the size is 2MB instead of the 1MB as you suggested?
*shrug* because I misremembered, or libgcj has grown considerably since I
last tried it (at least java.nio is new)?
$ size hello
text data bss dec hex filename
1841772 602412 111332 2555516 26fe7c hello
$ nm hello | grep 'class\$E$' | wc -l
602
Wow... 602 classes linked into such a small program.
Jeff