how to build GNU Classpath and JamVM
Posted
by michelemarcon
on Stack Overflow
See other posts from Stack Overflow
or by michelemarcon
Published on 2009-04-14T14:05:32Z
Indexed on
2010/04/26
11:03 UTC
Read the original article
Hit count: 275
I'm trying to build GNU Classpath 0.98 and JamVM 1.5.2. Following the JamVM readme, I did 'configure; make; make install' on the jamVM, and it worked.
I then added jamvm and Sun javac to the path. Then with GNU Classpath I did this:
./configure --enable-jni --disable-gtk-peer --disable-gconf-peer --disable-plugin
I got this error:
The javac failed (see config.log)
On the config.log, I see that javac can't find VMStackWalker (which is jamvm-specific) I added the jamvm classes to the CLASSPATH, then I got this error:
The Java VM jamvm failed (see config.log)
On the config.log, I see that jamvm cannot find java.lang.Class
WTF?
© Stack Overflow or respective owner