This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
java@gcc.gnu.org
- From: ARTUR MILER <artur dot miler dot 810 at student dot lu dot se>
- To: java at gcc dot gnu dot org
- Date: Sun, 14 Mar 2004 21:10:08 +0100
- Subject: java@gcc.gnu.org
Hi;
I have a little problem with gcj. I can't compile programms that have swedish
charactes in comments!!! Here is example:
class error
{
public static void main(String[] a)
{
/**Den här kompilerar inte med gcj!!!
*/
System.out.println("Now it works!");
}
}
Here is output:
$ gcj error.java --main=error
error.java:5: error: malformed UTF-8 character.
/**Den här kompilerar inte med gcj!!!
^
1 error
Can I do something to get gcj use unicode instead or is this a bug? I don't have
such problems with gcc. I'm not so use to tweak gcj (or gcc) so I realy need help.