summaryrefslogtreecommitdiff
path: root/tool/rjit
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-03-18 23:42:58 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-18 23:42:58 -0700
commitc4e2718763e1ab2d00f43b0797b4852b5ccf28c8 (patch)
treef2091e8a9e13c76c1fc4291ed6f7aa378bc56e03 /tool/rjit
parent32e0c97dfaa7973032e6ab93260be8eb4ad1458a (diff)
downloadruby-c4e2718763e1ab2d00f43b0797b4852b5ccf28c8.tar.gz
RJIT: Workaround USE_RVARGC=0 CI
Diffstat (limited to 'tool/rjit')
-rwxr-xr-xtool/rjit/bindgen.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/tool/rjit/bindgen.rb b/tool/rjit/bindgen.rb
index b68123b38a..6764f98594 100755
--- a/tool/rjit/bindgen.rb
+++ b/tool/rjit/bindgen.rb
@@ -606,6 +606,7 @@ generator = BindingGenerator.new(
],
skip_fields: {
'rb_execution_context_struct.machine': %w[regs], # differs between macOS and Linux
+ 'RString.as': %w[embed], # doesn't compile on USE_RVARGC=0 CI
rb_execution_context_struct: %w[method_missing_reason], # non-leading bit fields not supported
rb_iseq_constant_body: %w[yjit_payload], # conditionally defined
rb_thread_struct: %w[status locking_native_thread to_kill abort_on_exception report_on_exception pending_interrupt_queue_checked],