diff options
Diffstat (limited to 'doc/manual')
-rwxr-xr-x | doc/manual/index.html | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/doc/manual/index.html b/doc/manual/index.html index 64385f1..51dec44 100755 --- a/doc/manual/index.html +++ b/doc/manual/index.html @@ -347,25 +347,17 @@ <h3><a name="SecAcquiring">Acquiring and Building GlueGen</a></h3> - The source code for GlueGen may be obtained via Subversion: + The source code for GlueGen may be obtained by cloning the Git repository: <pre> - svn co https://gluegen.dev.java.net/svn/gluegen/trunk gluegen --username [username] + $git clone git://github.com/mbien/gluegen.git gluegen </pre> - To build GlueGen, first download the ANTLR jar file from <a - href="http://antlr.org/">antlr.org</a>. Currently GlueGen is only - compatible with ANTLR releases up to 2.7.x and does not work with - ANTLR 3.x. (NOTE: do not place the ANTLR jar file in the Extensions - directory of the JRE or JDK, as this will cause the build to fail.) - Next, copy <code>make/gluegen.properties</code> from the GlueGen - workspace to your home directory (pointed to by the Java system - property <code>user.home</code>; on Windows this is - e.g. <code>C:\Documents and Settings\username</code>). Edit the copy - of gluegen.properties in your home directory to point the - <code>antlr.jar</code> property to the location of the ANTLR jar file - on your local disk. Finally, cd to the <code>make/</code> subdirectory - and type "ant". Ant 1.6.x or later is required. + To build GlueGen, cd into the gluegen/make folder and invoke ant. + <pre> + $ant clean all test + </pre> + Ant 1.8 or later and a Java 6 compatible JDK is required. <h4><a name="SecCommon">Common Build Problems</a></h4> |