changeset 3524:8a4a11234ccf

disable jit compiler by default
author John W. Eaton <jwe@octave.org>
date Sun, 16 Feb 2014 17:53:15 -0500
parents 1b350761007f
children 7e203439d0a9
files configure.ac
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Sun Feb 16 17:49:33 2014 -0500
+++ b/configure.ac	Sun Feb 16 17:53:15 2014 -0500
@@ -74,10 +74,10 @@
   [if test "$enableval" = yes; then BUILD_STATIC=yes; fi], [])
 AC_SUBST(BUILD_STATIC)
 
-ENABLE_JIT=yes
+ENABLE_JIT=no
 AC_ARG_ENABLE([jit],
-  [AS_HELP_STRING([--disable-jit], [Disable Octave JIT compiler])],
-  [if test "$enableval" = no; then ENABLE_JIT=no; fi], [])
+  [AS_HELP_STRING([--enable-jit], [Enable Octave JIT compiler])],
+  [if test "$enableval" = yes; then ENABLE_JIT=yes; fi], [])
 AC_SUBST(ENABLE_JIT)
 
 ENABLE_JAVA=yes