hi,
the VMRuntime distributed with jamvm 1.2.3 does not work on classpath CVS (as of today). classpath changed the signature of nativeLoad to take a ClassLoader argument. here is a patch correcting jamvm to match.
jamvm seems very nice. can we see a public CVS server for it? it would make this easier to track, I think.
-graydon
--- lib/java/lang/VMRuntime.java~ 2004-12-23 06:11:32.000000000 -0500
+++ lib/java/lang/VMRuntime.java 2005-01-07 17:06:46.915311672 -0500
@@ -150,7 +150,7 @@
* @param filename the file to load
* @return 0 on failure, nonzero on success
*/
- static native int nativeLoad(String filename);
+ static native int nativeLoad(String filename, ClassLoader loader);/**
* Map a system-independent "short name" to the full file name, and append
_______________________________________________ Classpath mailing list [email protected] http://lists.gnu.org/mailman/listinfo/classpath

