This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
RE: GCJ 3.2 for Win32: Updated Snapshot
- From: Øyvind Harboe <oyvind dot harboe at zylin dot com>
- To: <java at gcc dot gnu dot org>
- Date: Wed, 11 Dec 2002 20:33:10 +0100
- Subject: RE: GCJ 3.2 for Win32: Updated Snapshot
Q: if all I want to do is to create a monolithic .exe file from
my already compiled Java app to ease deployment, then do I need
to compile the SWT source?
Is there some simple way to rewrite my java.exe command line to
a gcj command line to produce the monolithic .exe file?
I was imagining something like:
java -classpath=swt.jar;app.jar;bar.jar com.foo.bar
=>
gcj -fjni --main=com.foo.bar swt.jar app.jar bar.jar -o bigapp.exe
Øyvind