summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-07-28 16:51:49 +0200
committerSven Gothel <[email protected]>2011-07-28 16:51:49 +0200
commit0babaf8cb71ec12db8eb0d2ae28e3e567fb73780 (patch)
treedfaedb83e28512f6195bea6633eda5db002cd6d0
parentb8e6d6c956920988236a2c17c6055b17a89e05dd (diff)
prepare for linux/armv7 ; Adapt to gluegen changes
-rw-r--r--build.xml19
-rw-r--r--src/com/jogamp/opencl/util/CLInfo.java4
2 files changed, 19 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index be9718bd..a0751a15 100644
--- a/build.xml
+++ b/build.xml
@@ -418,11 +418,21 @@
<syslibset dir="${opencl.lib32.dir}" libs="OpenCL" if="opencl.lib32.dir"/>
</linker>
+ <linker id="linker.cfg.linux.x86.jocl" extends="linker.cfg.linux.x86">
+ <syslibset dir="/usr/lib" libs="OpenCL" if="static.binding" unless="opencl.lib32.dir"/>
+ <syslibset dir="${opencl.lib32.dir}" libs="OpenCL" if="opencl.lib32.dir"/>
+ </linker>
+
<linker id="linker.cfg.linux.amd64.jocl" extends="linker.cfg.linux.amd64" >
<syslibset dir="/usr/lib" libs="OpenCL" if="static.binding" unless="opencl.lib64.dir"/>
<syslibset dir="${opencl.lib64.dir}" libs="OpenCL" if="opencl.lib64.dir"/>
</linker>
+ <linker id="linker.cfg.linux.armv7.jocl" extends="linker.cfg.linux.armv7">
+ <syslibset dir="/usr/lib" libs="OpenCL" if="static.binding" unless="opencl.libarmv7.dir"/>
+ <syslibset dir="${opencl.libarmv7.dir}" libs="OpenCL" if="opencl.libarmv7.dir"/>
+ </linker>
+
<linker id="linker.cfg.win32.mingw.jocl" extends="linker.cfg.win32.mingw">
<linkerarg value="-Wl,--kill-at" /> <!-- remove @ from function names -->
<syslibset dir="${opencl.lib32.dir}" libs="OpenCL" if="static.binding"/>
@@ -443,7 +453,7 @@
<target name="c.configure.default" depends="c.configure.os" />
<target name="c.configure.os" depends="c.configure.win, c.configure.linux, c.configure.macosx" />
<target name="c.configure.win" depends="c.configure.win.mingw32, c.configure.win.mingw64" if="isWindows" />
- <target name="c.configure.linux" depends="c.configure.linux.x86, c.configure.linux.amd64" if="isLinux" />
+ <target name="c.configure.linux" depends="c.configure.linux.x86, c.configure.linux.amd64, c.configure.linux.armv7" if="isLinux" />
<target name="c.configure.win.mingw32" if="isMingW32">
<echo message="Win.Ming32W" />
@@ -458,13 +468,18 @@
<target name="c.configure.linux.x86" if="isLinuxX86">
<echo message="Linux.x86" />
<property name="compiler.cfg.id" value="${compiler.cfg.id.base}" />
- <property name="linker.cfg.id" value="linker.cfg.linux.jocl" />
+ <property name="linker.cfg.id" value="linker.cfg.linux.x86.jocl" />
</target>
<target name="c.configure.linux.amd64" if="isLinuxAMD64">
<echo message="Linux.AMD64" />
<property name="compiler.cfg.id" value="${compiler.cfg.id.base}" />
<property name="linker.cfg.id" value="linker.cfg.linux.amd64.jocl" />
</target>
+ <target name="c.configure.linux.armv7" if="isLinuxARMv7">
+ <echo message="Linux.ARMv7" />
+ <property name="compiler.cfg.id" value="${compiler.cfg.id.base}" />
+ <property name="linker.cfg.id" value="linker.cfg.linux.armv7.jocl" />
+ </target>
<target name="c.configure.macosx" if="isOSX">
<echo message="MacOS" />
<property name="compiler.cfg.id" value="${compiler.cfg.id.base}" />
diff --git a/src/com/jogamp/opencl/util/CLInfo.java b/src/com/jogamp/opencl/util/CLInfo.java
index 40c4f2ff..4d2ab08b 100644
--- a/src/com/jogamp/opencl/util/CLInfo.java
+++ b/src/com/jogamp/opencl/util/CLInfo.java
@@ -49,9 +49,9 @@ public class CLInfo {
// host
sb.append("HOST_JRE: ").append(System.getProperty("java.runtime.version")).append("\n");
sb.append("HOST_JVM: ").append(System.getProperty("java.vm.name")).append("\n");
- sb.append("HOST_ARCH: ").append(Platform.getArch()).append("\n");
+ sb.append("HOST_ARCH: ").append(Platform.getArchName()).append("\n");
sb.append("HOST_NUM_CORES: ").append(Runtime.getRuntime().availableProcessors()).append("\n");
- sb.append("HOST_OS: ").append(Platform.getOS()).append("\n");
+ sb.append("HOST_OS: ").append(Platform.getOSName()).append("\n");
sb.append("HOST_LITTLE_ENDIAN: ").append(Platform.isLittleEndian()).append("\n");
CLPlatform.initialize();