This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: trying to compile looks (jgoodies)
- From: Tom Tromey <tromey at redhat dot com>
- To: "wolfgang pauli" <ookami at gmx dot de>
- Cc: java at gcc dot gnu dot org
- Date: 08 Nov 2005 11:59:38 -0700
- Subject: Re: trying to compile looks (jgoodies)
- References: <12145.1131322070@www81.gmx.net> <17762.1131358924@www52.gmx.net>
- Reply-to: tromey at redhat dot com
>>>>> "wolfgang" == wolfgang pauli <ookami@gmx.de> writes:
wolfgang> So, the actual goal of all this is that I want to compile
wolfgang> Jabref. Maybe I do not need to compile looks for that. It
wolfgang> should be possible to just compile the jar directly, right?
wolfgang> Did anybody do this yet?
As far as I know, nobody has yet.
wolfgang> If I run: gcj --main=net.sf.jabref.JabRef jabref.jar
Before compiling it, one easy sanity check is to run the program with
'gij' instead of 'java'. This will run it in the interpreter. If it
fails this way there is a good chance that compiling it will be a
waste of time.
wolfgang> Caused by: java.lang.ClassNotFoundException:
wolfgang> com.jgoodies.plaf.windows.ExtWindowsLookAndFeel not found in
Sounds like this class needs to be on the runtime classpath.
You're probably missing a dependent jar or two.
Tom