aboutsummaryrefslogtreecommitdiffstats
path: root/doc/HowToBuild.html
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2006-02-09 18:54:46 +0000
committerKenneth Russel <[email protected]>2006-02-09 18:54:46 +0000
commitd2b9ef0612d278ad1fb8ca4501ee028004c53dc3 (patch)
tree767f46f07812591e35d83b566e238b1102ee993a /doc/HowToBuild.html
parenta2ef3f3eb4ccf864e13188032175389c252c07dd (diff)
Added note requested by Justin Couch on needing JDK 5 for AMD64 builds
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@591 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'doc/HowToBuild.html')
-rw-r--r--doc/HowToBuild.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/HowToBuild.html b/doc/HowToBuild.html
index 41d40c497..253b026c3 100644
--- a/doc/HowToBuild.html
+++ b/doc/HowToBuild.html
@@ -12,8 +12,9 @@ Here are the steps that are required in order to build the JOGL
OpenGL binding from a fresh copy of the source distribution:
<OL>
- <LI> <B>Install Ant:</B> <br> Download and unpack Ant 1.6.1 or later from <a href="http://ant.apache.org/">http://ant.apache.org</a> and add the <code>bin/</code> subdirectory to your PATH environment variable. (Later versions of Ant should work; 1.6.2 has been tested successfully.)
- <LI> <B>Install ANTLR:</B> <br> Download and unpack ANTLR 2.7.2 from <a href="http://www.antlr.org">http://www.antlr.org</a>. (Later versions of ANTLR should work; ANTLR 2.7.3 has been tested successfully.)
+ <LI> <B>Install the JDK:</B> <br> the JOGL build requires JDK 1.4.2 or later. On AMD64 platforms such as Linux/AMD64, Solaris/AMD64 and Windows/AMD64, the build requires the Sun JDK 5.0 or later, as the 1.4.2 releases did not have an AMD64-specific JVM. On these platforms, it is also currently necessary to have e.g. <code>bin/amd64/java</code> in your PATH, although from a technical standpoint this could be worked around in the build process.
+ <LI> <B>Install Ant:</B> <br> Download and unpack the latest version of Ant from <a href="http://ant.apache.org/">http://ant.apache.org</a> and add the <code>bin/</code> subdirectory to your PATH environment variable.
+ <LI> <B>Install ANTLR:</B> <br> Download and unpack the latest version of ANTLR from <a href="http://www.antlr.org">http://www.antlr.org</a>. Only the jar file is needed.
<LI> <B>Unset your CLASSPATH environment variable:</B> <br> The Ant build requires that the JOGL jars not be visible on the classpath. On Unix, type <code> unsetenv CLASSPATH </code> into a csh or tcsh shell, or <code> unset CLASSPATH </code> into a Bourne shell. On Windows, type <code> set CLASSPATH= </code> into a command prompt.