views:

873

answers:

2

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?

+2  A: 

Fount it!

http://sourceforge.net/forum/message.php?msg_id=7193290

michelemarcon
you vote your own answer as the best one?
jeshan
Yes, as this is the solution for the problem, and no one else has found it.
michelemarcon
A: 

try ecj,classpath need a java compiler ,and sun sdk seems to be no good here

Thanks, but the link above shows the solution.
michelemarcon