This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Debugging libgcj on cygwin
- From: Tom Tromey <tromey at redhat dot com>
- To: Thomas Pfaff <tpfaff at gmx dot net>
- Cc: java at gcc dot gnu dot org, Danny Smith <dannysmith at clear dot net dot nz>
- Date: 30 Jun 2003 08:29:39 -0600
- Subject: Re: Debugging libgcj on cygwin
- References: <3EF6F3BD.5090608@gmx.net> <3EFFEE98.6070901@gmx.net>
- Reply-to: tromey at redhat dot com
>>>>> "Thomas" == Thomas Pfaff <tpfaff@gmx.net> writes:
Thomas> When running the testsuite from the libjava directory
Thomas> gnu.gcj.convert.UnicodeToBytes.getDefaultEncoder() tries to load the
Thomas> encoder class for "gnu.gcj.convert.Output_ASCII". It will search for
Thomas> this class on the filesystem first and sees that a class exists at
Thomas> "./gnu/gcj/convert/Output_ASCII.class".
You must be linking statically, because ordinarily this class is found
in libgcj. Try making sure this class is linked into your program.
Tom