Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Install an appropriate JDK from http://java.sun.com/ with a minimum version of 1.4.2.
  2. In your setup.sh, set JAVA_HOME and JDK_HOME to the Java installation area.
    No Format
    export JAVA_HOME=/cygdrive/c/java/jdk1.4.2/
    export JDK_HOME=${JAVA_HOME}
    export PATH=$JDK_HOME:$JDK_HOME/bin
    
  3. To test the Java installation, try to run the compiler.
    No Format
    
    javac
    
Warning

The above JAVA_HOME directory is an example only. You need to replace it with the correct path to your JDK.

...