diff options
author | Wade Walker <[email protected]> | 2015-10-04 16:00:01 -0500 |
---|---|---|
committer | Wade Walker <[email protected]> | 2015-11-08 14:05:32 -0600 |
commit | 050279e6ccd7a3fcc4031730f7e157a3d10e28cb (patch) | |
tree | 1d91250eea09320329822afba53e69298b91b249 /make/build.xml | |
parent | 0135df38d6ccdf17283a26c9c56adb08a0e6d30e (diff) |
Add versioned interfaces for CL 1.1, 1.2, and 2.0
Now all three derive from CL, which is currently 1.1.
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/make/build.xml b/make/build.xml index e608d255..f5645759 100644 --- a/make/build.xml +++ b/make/build.xml @@ -410,7 +410,7 @@ <classpath refid="gluegen.classpath" /> </gluegen> - <echo message="Generating CLImpl.java, CLImpl_JNI.c, and CLProcAddressTable.java for OpenCL version 1.1"/> + <echo message="Generating CL11.java, CLImpl11.java, CLImpl11_JNI.c, and CLProcAddressTable11.java for OpenCL version 1.1"/> <gluegen src="${stub.includes}/opencl.h" outputRootDir="${build}" config="${config}/cl-impl-11.cfg" @@ -425,7 +425,7 @@ <include name="${gen.includes.dir}/CL12"/> </dirset> <echo message="OpenCL stub include path for OpenCL version 1.2: ${toString:stub.includes.fileset.all.12}"/> - <echo message="Generating CLImpl.java, CLImpl_JNI.c, and CLProcAddressTable.java for OpenCL version 1.2"/> + <echo message="Generating CL12.java, CLImpl12.java, CLImpl12_JNI.c, and CLProcAddressTable12.java for OpenCL version 1.2"/> <gluegen src="${stub.includes}/opencl.h" outputRootDir="${build}" config="${config}/cl-impl-12.cfg" @@ -440,7 +440,7 @@ <include name="${gen.includes.dir}/CL20"/> </dirset> <echo message="OpenCL stub include path for OpenCL version 2.0: ${toString:stub.includes.fileset.all.20}"/> - <echo message="Generating CLImpl.java, CLImpl_JNI.c, and CLProcAddressTable.java for OpenCL version 2.0"/> + <echo message="Generating CL20.java, CLImpl20.java, CLImpl20_JNI.c, and CLProcAddressTable20.java for OpenCL version 2.0"/> <gluegen src="${stub.includes}/opencl.h" outputRootDir="${build}" config="${config}/cl-impl-20.cfg" |