Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to build GNU Classpath and JamVM

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.

What's wrong?!

like image 635
michelemarcon Avatar asked Nov 05 '22 21:11

michelemarcon


1 Answers

Fount it!

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

like image 65
michelemarcon Avatar answered Dec 14 '22 02:12

michelemarcon