This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Question about compiling .jar files?
- From: Tom Tromey <tromey at redhat dot com>
- To: Dan Bolser <dmb at mrc-dunn dot cam dot ac dot uk>
- Cc: Andrew Haley <aph at redhat dot com>, java at gcc dot gnu dot org
- Date: 30 Nov 2004 16:05:41 -0700
- Subject: Re: Question about compiling .jar files?
- References: <Pine.LNX.4.21.0411271211380.3960-100000@mail.mrc-dunn.cam.ac.uk>
- Reply-to: tromey at redhat dot com
>>>>> "Dan" == Dan Bolser <dmb@mrc-dunn.cam.ac.uk> writes:
Dan> edu/uci/ics/jung/algorithms/cluster/KMeansClusterer.java:64: error: cannot
Dan> find file for class scratch.joshua.utilities.DiscreteDistribution
You need to tell gcj where to find these classes, eg using the
-classpath option.
Dan> edu/uci/ics/jung/io/BipartiteGraphReader.java:192: error: class
Dan> 'java.lang.String' has no method named 'split' matching signature
This means the version of libgcj you are using did not implement this
method. It is implemented in newer versions, however.
Tom