From: Brian P. <bp...@wi...> - 2001-08-08 23:17:58
|
I'm compiling to class files like this: jythonc --core --deep --jar my.jar *.py If I look in the jar, sure enough, the whole compiler "package" is not there? Any idea what I might be doing wrong? (The code runs fine through "jython".) Java Traceback: at org.python.core.Py.JavaError(Py.java) at org.python.core.PyTableCode.call(PyTableCode.java) at org.python.core.PyCode.call(PyCode.java) at org.python.core.imp.createFromCode(imp.java) at org.python.core.Py.runMain(Py.java) at gco.main(gco.java:673) Traceback (innermost last): File "C:\snapshots\btp_tools_rmdev\tools\iSource\src\gco.py", line 0, in main java.lang.NoClassDefFoundError: org/python/compiler/JavaMaker at org.python.core.MakeProxies.makeProxy(MakeProxies.java) at org.python.core.PyClass.init(PyClass.java) at org.python.core.PyClass.<init>(PyClass.java) at org.python.core.Py.makeClass(Py.java) at org.python.core.Py.makeClass(Py.java) at gco$_PyInner.main$8(gco.java:555) at gco$_PyInner.call_function(gco.java:236) at org.python.core.PyTableCode.call(PyTableCode.java) at org.python.core.PyCode.call(PyCode.java) at org.python.core.imp.createFromCode(imp.java) at org.python.core.Py.runMain(Py.java) at gco.main(gco.java:673) java.lang.NoClassDefFoundError: java.lang.NoClassDefFoundError: org/python/compiler/JavaMaker Thanks! |