diff libinterp/corefcn/pt-jit.cc @ 17792:26e9312e6928

Build JIT compiler by default, but do not enable it by default. * configure.ac: Switch build_jit to "yes". * libinterp/corefcn/pt-jit.cc: Initialize Vjit_enable to false (disable at runtime). * libinterp/octave.cc: Process new --jit-compiler option. * libinterp/options-usage.h: Document new --jit-compiler option. Remove old --no-jit-compiler option.
author Rik <rik@octave.org>
date Tue, 29 Oct 2013 11:09:49 -0700
parents 175b392e91fe
children 97e49b588f5d
line wrap: on
line diff
--- a/libinterp/corefcn/pt-jit.cc	Tue Oct 29 10:28:39 2013 -0700
+++ b/libinterp/corefcn/pt-jit.cc	Tue Oct 29 11:09:49 2013 -0700
@@ -42,7 +42,7 @@
 
 static bool Vdebug_jit = false;
 
-static bool Vjit_enable = true;
+static bool Vjit_enable = false;
 
 static int Vjit_startcnt = 1000;