Hi, yes…
I revised joal gluegen a bit, and it works for me.
The key is
-
add VC9 supporting
-
Update 1.4.2 doc to 1.6 doc at
http://java.sun.com/javase/6/docs/api/
-
Revise all source=“1.4” to source=“1.6”
-
Particularly, correctly set gluegen directory. My gluegen at the address “” is directly downloaded from https://gluegen.dev.java.net/
<target name="load.user.properties">
<!-- Load the user specified properties file that defines various host
- specific paths. The user will be notified if this is does not
- exist. -->
<property name="user.properties.file" value="./joal.properties" />
<property file="${user.properties.file}" />
<echo message="Loaded ${user.properties.file}." />
<property file="../../gluegen/make/gluegen.properties" />
<echo message="Loaded ../../gluegen/make/gluegen.properties." />
<echo message="antlr.jar=${antlr.jar}" />
<fail message="antlr.jar was not specified in joal.properties or gluegen.properties. Please see README.txt for instructions" unless="antlr.jar"/>
<fail message="joal.lib.dir was not specified in joal.properties. Please see README.txt for instructions" unless="joal.lib.dir"/>
</target>
- Finally, ant…
I attached my “build.xml” as “build.txt”. Simply change the file type, correctly set gluegen folder, you might be able to remove JOAL Gluegen but only use the up-to-date one.
Ane, hope you can confirm what I have done is correct.
Cheers
JIA Pei