Unable to compile Processing from source, documentation incorrect?
in
Integration and Hardware
•
2 years ago
I'm trying to follow the instructions on compiling Processing from source, here:
which says:
cd /path/to/processing/build/linux and ./make.sh
sadly, there's no make.sh there. there is a "processing" file, which seems to be designed to run processing once it's been built. Executing it returns this error:
Exception in thread "main" java.lang.NoClassDefFoundError: processing/app/Base
Caused by: java.lang.ClassNotFoundException: processing.app.Base
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
Could not find the main class: processing.app.Base. Program will exit.
Caused by: java.lang.ClassNotFoundException: processing.app.Base
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
Could not find the main class: processing.app.Base. Program will exit.
There are three make.sh files in the entire processing-read-only directory:
processing-read-only/processing/build/javadoc/make.sh
processing-read-only/processing/build/shared/tools/Mangler/make.sh
processing-read-only/processing/core/make.sh
That last one seemed to hold potential, but running it returns the error:
chmod: cannot access `preproc.pl': No such file or directory
./make.sh: 6: ./preproc.pl: not found
./make.sh: 7: jikes: not found
Has anyone compiled Processing from source? How?
Thanks,
Thanks,
Ben
(not sure what other category to file this question under)
1