Luiz Otavio L. Zorzella writes:
>
> Did anyone try the new kaffe? For me, all it does is segfault (no
> core) after a long wait (Hello World program):
>
Sorry to follow-up to my own question, but I just found the
answer. The classpath has to contain kaffe's Klasses.jar file...
--
Luiz Otav
Did anyone try the new kaffe? For me, all it does is segfault (no
core) after a long wait (Hello World program):
$ cat Hello.java
import java.io.*;
public class Hello {
public static void main (String[] args) {
System.out.println ("Hello");
}
}
$ /usr/local/kaffe-1.0b1/bin/kaffe He