comparison configure.ac @ 18272:0ab9c475300a stable

build: Don't build JIT by default (bug #41213) * configure.ac: Don't build JIT by default. Only explicit --enable-jit will include JIT in Octave.
author Rik <rik@octave.org>
date Tue, 14 Jan 2014 09:52:03 -0800
parents 975480e1be4b
children ec975e826728
comparison
equal deleted inserted replaced
18266:975480e1be4b 18272:0ab9c475300a
788 AC_DEFINE(HAVE_ZLIB, 1, [Define to 1 if ZLIB is available.]) 788 AC_DEFINE(HAVE_ZLIB, 1, [Define to 1 if ZLIB is available.])
789 fi 789 fi
790 790
791 ### Check for the LLVM library 791 ### Check for the LLVM library
792 792
793 build_jit=yes 793 build_jit=no
794 AC_ARG_ENABLE([jit], 794 AC_ARG_ENABLE([jit],
795 [AS_HELP_STRING([--enable-jit], 795 [AS_HELP_STRING([--enable-jit],
796 [(EXPERIMENTAL) enable JIT compiler])], 796 [(EXPERIMENTAL) enable JIT compiler])],
797 [if test "$enableval" = no; then 797 [if test "$enableval" = yes; then
798 build_jit=no 798 build_jit=yes
799 fi], 799 fi],
800 []) 800 [])
801 801
802 LLVM_CXXFLAGS= 802 LLVM_CXXFLAGS=
803 LLVM_CPPFLAGS= 803 LLVM_CPPFLAGS=