diff options
author | Nobuyoshi Nakada <[email protected]> | 2025-02-13 15:59:16 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2025-02-13 18:01:03 +0900 |
commit | 4a67ef09ccd703047552b740431cfe15e32451f4 () | |
tree | 1092e15836655fde8935c7788eb0a411e8c9ca42 /version.c | |
parent | d35cc0cc772b48c5aaba354e7084278da68f44e4 (diff) |
[Feature #21116] Extract RJIT as a third-party gem
Notes: Merged: https://.com/ruby/ruby/pull/12740
-rw-r--r-- | version.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -15,7 +15,6 @@ #include "ruby/ruby.h" #include "version.h" #include "vm_core.h" -#include "rjit.h" #include "yjit.h" #include <stdio.h> @@ -157,12 +156,6 @@ Init_version(void) rb_provide("ruby2_keywords.rb"); } -#if USE_RJIT -#define RJIT_OPTS_ON opt->rjit.on -#else -#define RJIT_OPTS_ON 0 -#endif - #if USE_YJIT #define YJIT_OPTS_ON opt->yjit #else @@ -238,7 +231,6 @@ void Init_ruby_description(ruby_cmdline_options_t *opt) { const char *const jit_opt = - RJIT_OPTS_ON ? " +RJIT" : YJIT_OPTS_ON ? YJIT_DESCRIPTION : ""; define_ruby_description(jit_opt); |