summaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-07-21 11:49:08 +0200
committerSven Gothel <[email protected]>2011-07-21 11:49:08 +0200
commit4aa66890176e9c2d8e648d6031c9491c3d625e07 (patch)
tree68256127a3e68313b127786a8c49eaefa9e7056e /make/build.xml
parentdc4b259b6651bdc0cec0895bc74e26e504870c8e (diff)
Fix TestStructAccessorEndian
- StructAccessor uses byteOffset now (since 8b3057585930357bb16546f584d998953b084034) Fix linux armv7l eabi: - build.xml arm7 -> armv7 - all tests passes Adding NativeSizeAlignment-linux-armv7l_eabi from passing test OK: linux 32/64/armv7l, windows 32/64
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/make/build.xml b/make/build.xml
index d27b801..870c537 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -291,13 +291,13 @@
<property name="linker.cfg.id" value="linker.cfg.linux" />
</target>
- <target name="declare.linux.arm7" if="isLinuxARM7">
- <echo message="Linux.arm7" />
- <property name="compiler.cfg.id" value="compiler.cfg.linux.arm7" />
- <property name="linker.cfg.id" value="linker.cfg.linux.arm7" />
+ <target name="declare.linux.armv7" if="isLinuxARMv7">
+ <echo message="Linux.armv7" />
+ <property name="compiler.cfg.id" value="compiler.cfg.linux.armv7" />
+ <property name="linker.cfg.id" value="linker.cfg.linux.armv7" />
</target>
- <target name="declare.linux" depends="declare.linux.x86,declare.linux.amd64,declare.linux.ia64,declare.linux.arm7" if="isLinux" >
+ <target name="declare.linux" depends="declare.linux.x86,declare.linux.amd64,declare.linux.ia64,declare.linux.armv7" if="isLinux" >
<property name="c.src.dir.os" value="unix" />
<property name="java.includes.dir.platform" value="${java.includes.dir}/linux" />
</target>