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
This commit is contained in:
k0kubun 2018-10-21 15:41:00 +00:00
Родитель 2f7880e18a
Коммит 84d747c6d9
1 изменённых файлов: 4 добавлений и 1 удалений

5
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]