Re: [Sablevm-developer] problem running gjdoc (javadoc replacement) w/ SableVM
Brought to you by:
egagnon
From: Mark W. <ma...@kl...> - 2002-10-24 13:13:56
|
Hi, On Wed, 2002-10-16 at 13:27, Grzegorz Prokopski wrote: > > gjdoc is this: > exec java --classpath /usr/share/java/libgcj.jar -jar > /usr/share/java/gjdoc.jar "$@" Try removing the /usr/share/java/libgcj.jar from the classpath. Those are the core classes from gcj which are not (yet) the same as the GNU Classpath classes which are used with sablevm. > Mark Howard has done some work on this topic and reported that > he was able to run it with gcj *only* (compiled to native code). Yes this works very nicely. > or - the call to sablevm looked like this: > /usr/bin/sablevm -Y > --classpath=/usr/share/java/gjdoc.jar:/usr/share/java/libgcj.jar > gnu.classpath.tools.gjdoc.Main -doclet > gnu.classpath.tools.doclets.xmldoclet.Driver -sourcepath /tmp/gjdoc/ Here also, try to remove the libgcj.jar. Also note that currently gjdoc needs the sources of the core classes also on the sourcepath. (It should print a WARNING at the beginning about that.) > I may be wrong - but it seems that there's something wrong w/ > createArray? So it is rather gnu classpath related problem not > SableVM? createArray() looks like a SableVM addition to java.lang.ClassLoader which is not present in the upstream Classpath sources. Cheers, Mark |