changeset 2719:fdd91eddd59b

Revert previous change to ARM32 JIT default as bootstraps on Fedora. 2014-03-28 Andrew John Hughes <gnu.andrew@member.fsf.org> * acinclude.m4: (IT_ENABLE_ARM32JIT): Turn JIT on by default. * NEWS: Readd mention of turning JIT on by default.
author Andrew John Hughes <gnu_andrew@member.fsf.org>
date Fri, 28 Mar 2014 11:55:57 +0000
parents 47177c9bfafa
children 4ca3077d0f5d
files ChangeLog NEWS acinclude.m4
diffstat 3 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Mar 28 03:41:03 2014 +0000
+++ b/ChangeLog	Fri Mar 28 11:55:57 2014 +0000
@@ -1,3 +1,9 @@
+2014-03-28  Andrew John Hughes  <gnu.andrew@member.fsf.org>
+
+	* acinclude.m4:
+	(IT_ENABLE_ARM32JIT): Turn JIT on by default.
+	* NEWS: Readd mention of turning JIT on by default.
+
 2012-08-16  Andrew John Hughes  <gnu_andrew@member.fsf.org>
 
 	* Makefile.am:
--- a/NEWS	Fri Mar 28 03:41:03 2014 +0000
+++ b/NEWS	Fri Mar 28 11:55:57 2014 +0000
@@ -64,6 +64,7 @@
   - Include $(CFLAGS) in assembler stage
   - PR1626: ARM32 assembler update for hsx24. Use ARM32JIT to turn it on/off.
   - Replace literal offsets for METHOD_SIZEOFPARAMETERS and ISTATE_NEXT_FRAME with correct symbolic names.
+  - Turn ARM32 JIT on by default
 * AArch64 port
   - PR1713: Support AArch64 Port
 * Shark
--- a/acinclude.m4	Fri Mar 28 03:41:03 2014 +0000
+++ b/acinclude.m4	Fri Mar 28 11:55:57 2014 +0000
@@ -2640,7 +2640,7 @@
 [
   AC_MSG_CHECKING([whether to enable the ARM32 JIT])
   AC_ARG_ENABLE([arm32-jit],
-                [AS_HELP_STRING(--enable-arm32-jit,build with the ARM32 JIT [[default=no]])],
+                [AS_HELP_STRING(--enable-arm32-jit,build with the ARM32 JIT [[default=yes]])],
   [
     case "${enableval}" in
       yes)
@@ -2652,7 +2652,7 @@
     esac
   ],
   [
-    enable_arm32jit=no
+    enable_arm32jit=yes
   ])
   AC_MSG_RESULT([$enable_arm32jit])
   AM_CONDITIONAL([ENABLE_ARM32JIT], test x"${enable_arm32jit}" = "xyes")