summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-10-25 22:26:20 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2022-10-25 22:26:20 -0700
commit1161454806f50a4be56347e5da897dda6b841d27 (patch)
tree344623310f33119d69bab9b46290824478b1a4cd
parent923aed26ff217f0b5619d5c53c24be7e0823b951 (diff)
Add NEWS entries about MJIT [ci skip]
-rw-r--r--NEWS.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index a4cbae7103..3a866040bd 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -327,6 +327,12 @@ The following deprecated APIs are removed.
### MJIT
+* The MJIT compiler is re-implemented in Ruby as a standard library `mjit`.
+* MJIT compiler is executed under a forked Ruby process instead of
+ doing it in a native thread called MJIT worker. [[Feature #18968]]
+ * As a result, Microsoft Visual Studio (MSWIN) is no longer supported.
+* MinGW is no longer supported. [[Feature #18824]]
+
## Static analysis
### RBS
@@ -381,3 +387,5 @@ The following deprecated APIs are removed.
[Feature #18630]: https://bugs.ruby-lang.org/issues/18630
[Feature #18589]: https://bugs.ruby-lang.org/issues/18589
[Feature #19060]: https://bugs.ruby-lang.org/issues/19060
+[Feature #18824]: https://bugs.ruby-lang.org/issues/18824
+[Feature #18968]: https://bugs.ruby-lang.org/issues/18968