summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-21 15:41:00 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-21 15:41:00 +0000
commit84d747c6d9edf200d8c007e39a37fbbbe79de9e5 (patch)
treef41821b0e4d4f25697b73c5822265ff46b6bfdbc /NEWS
parent2f7880e18a96567a085aad6b8c436c1ccfccc712 (diff)
NEWS: note about --disable-mjit-support [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 9c79194ac9..5e53d529f0 100644
--- a/NEWS
+++ b/NEWS
@@ -426,10 +426,13 @@ sufficient information, see the ChangeLog file or Redmine
* Introduce an initial implementation of JIT (Just-in-time) compiler. [Feature #14235] [experimental]
- * <tt>--jit</tt> option is added to enable JIT. <tt>--jit-verbose=1</tt>
+ * <tt>--jit</tt> command line option is added to enable JIT. <tt>--jit-verbose=1</tt>
is good for inspection. See <tt>ruby --help</tt> for others.
* To generate machine code, this JIT compiler uses C compiler used for building
the interpreter. Currently GCC, Clang, and Microsoft Visual C++ are supported for it.
+ * <tt>--disable-mjit-support</tt> option is added to configure. This is added for JIT debugging,
+ but if you get an error on building a header file for JIT, you can use this option to skip
+ building it as a workaround.
* rb_waitpid reimplemented on Unix-like platforms to maintain
compatibility with processes created for JIT [Bug #14867]