|
You have a choice between the built-in Java compiler or Jikes. Your account comes pre-configured to use Jikes, which is installed at /usr/local/jdk/bin/jikes. We strongly recommend its use, since Jikes is a very fast compiler from IBM that strictly adheres to the Sun's Java specification. More information about Jikes can be found at IBM's AlphaWorks site
If you wish to use the built-in compiler, simply delete the line of text that refers to the Java Compiler on the Page Compilation panel in the JRun Pro administration utility.
If you have removed your Jikes setting and would like to use it again, the Java Compiler field of the Page Compilation panel should read:
/usr/local/jdk/bin/jikes -nowarn -classpath %c -d %d %f
If you are using JDK1.2, we recommend not using Jikes as it is not fully JDK1.2 compliant. Use the standard javac instead:
/usr/local/jdk1.2/bin/javac -nowarn -classpath %c -d %d %f
|