summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2025-02-06 15:23:01 -0500
committerTakashi Kokubun <[email protected]>2025-04-18 21:52:56 +0900
commitb076037af26de91c41c651ce40ed4d38fcfdce05 (patch)
treed56fa19806ef1dc2bd4d76ad72dcf0cd2369c341
parent73d01016e81bc9f24355777de1a04a6a8b5a1a80 (diff)
Disable yjit_hook builtin for now
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/13131
-rw-r--r--ruby.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby.c b/ruby.c
index d76348bf93..14b96a3315 100644
--- a/ruby.c
+++ b/ruby.c
@@ -1806,8 +1806,8 @@ ruby_opt_init(ruby_cmdline_options_t *opt)
#endif
// Call yjit_hook.rb after rb_yjit_init() to use `RubyVM::YJIT.enabled?`
- void Init_builtin_yjit_hook();
- Init_builtin_yjit_hook();
+ //void Init_builtin_yjit_hook();
+ //Init_builtin_yjit_hook();
ruby_set_script_name(opt->script_name);
require_libraries(&opt->req_list);