changeset 2165:da2bf06b20e0

Support generation of native libraries for JCK on ARM. 2009-10-05 Edward Nevill <ed@camswl.com> * contrib/jck/compile-native-code.sh: Support for generation of native libraries for JCK on ARM
author Edward Nevill (ed@camswl.com)
date Thu, 20 May 2010 14:28:33 +0100
parents ad06363a6947
children 6178ca4346ed
files ChangeLog contrib/jck/compile-native-code.sh
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Feb 15 17:25:12 2010 +0000
+++ b/ChangeLog	Thu May 20 14:28:33 2010 +0100
@@ -1,3 +1,8 @@
+2009-10-05  Edward Nevill    <ed@camswl.com>
+
+	* contrib/jck/compile-native-code.sh:
+	Support for generation of native libraries for JCK on ARM
+
 2010-02-15 Andrew John Hughes  <ahughes@redhat.com>
 
 	* rewriter/agpl-3.0.txt,
--- a/contrib/jck/compile-native-code.sh	Mon Feb 15 17:25:12 2010 +0000
+++ b/contrib/jck/compile-native-code.sh	Thu May 20 14:28:33 2010 +0100
@@ -19,6 +19,9 @@
 
 arch=$(uname -m)
 case "$arch" in
+  arm*)
+    MFLAG=
+    ;;
   i?86|ppc)
     MFLAG=-m32
     ;;