This is the mail archive of the
java-discuss@sources.redhat.com
mailing list for the Java project.
Re: Bug on Solaris 2.7 (no fabsf)
- To: martin dot kahlert at infineon dot com
- Subject: Re: Bug on Solaris 2.7 (no fabsf)
- From: Tom Tromey <tromey at redhat dot com>
- Date: 11 Jan 2001 10:20:08 -0700
- Cc: java-discuss at sourceware dot cygnus dot com
- References: <20010111140035.A2016@keksy.muc.infineon.com>
- Reply-To: tromey at redhat dot com
>>>>> "Martin" == Martin Kahlert <martin.kahlert@infineon.com> writes:
Martin> Unfortunately the resulting gcj complains about an unknown encoding:
Martin> ~/Hello: gcj -o main --main=hello hello.java
Martin> hello.java:0: unknown encoding: `646'
Martin> Please submit a full bug report.
Martin> See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
This probably means that your locale claims its encoding is `646', but
your system's iconv() doesn't recognize that encoding (or more likely,
that name for the encoding).
One fix for you would be to specify your encoding by hand, eg:
gcj --encoding=UTF-8 ...
Tom