This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: building SWT with more than one source file
- From: <Andrew dot Ferguson at arm dot com>
- To: tromey at redhat dot com
- Cc: "GCJ Java" <java at gcc dot gnu dot org>
- Date: Thu, 27 Mar 2003 13:31:18 +0000
- Subject: Re: building SWT with more than one source file
>Andrew> is this the correct way to be including multiple source files?
>
>It's more typical to compile each .java file to a .o and then link
>them together.
>
>gcj -c foo.java
>gcj -c bar.java
>gcj --main=.. .... -lswt
that sorted it thanks!
one more question - is there any equivalent of the -Xms -Xmx flags for
setting minimum and maximum heap sizes? (or is this irrelevant?)
thanks,
Andrew