This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Class or interface `sun.io.CharToByteConverter' not found
- To: Brad Cox <bcox at virtualschool dot edu>
- Subject: Re: Class or interface `sun.io.CharToByteConverter' not found
- From: Tom Tromey <tromey at redhat dot com>
- Date: 05 Nov 2001 15:03:14 -0700
- Cc: java at gcc dot gnu dot org
- References: <DF98491E-D233-11D5-8FC0-0005022D9F0A@virtualschool.edu>
- Reply-To: tromey at redhat dot com
>>>>> "Brad" == Brad Cox <bcox@virtualschool.edu> writes:
Brad> Nope; I avoid CLASSPATH like the plague
Ok, great.
Brad> Managed to make some progress like this
Brad> %.o: %.java
Brad> @echo Compling $<
Brad> @/usr/local/bin/gcj -c -O2 -o $@ \
Brad> -I/usr/local/gcc.3.1/share/libgcj.jar \
Brad> -I/mybank/WEB-INF/lib/servlet.jar $<
Brad> But I could have sworn libgcj was supposed to be included
Brad> automatically.
It is.
With a relatively recent gcj 3.1, you can use `gcj -v' to see the
search path. Try it without the `-I...libgcj.jar' to see what is
built in to gcj. Maybe this will give us a clue as to what is going
on.
The next suspect after CLASSPATH is a local install problem.
Tom