From 346d6667febdbec9a3c57e47009ab21e121b5b1d Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Tue, 17 Feb 2026 18:54:27 -0700 Subject: [PATCH] package/ruby: disable zjit for all builds The zjit option introduces a rust dependency and due to that not being handled appropriately it can cause build failures if this feature gets incorrectly autodetected as being available. This feature was introduced when ruby was bumped to version 4.0.0 in f594f86f9d6f6a3b8dcd03d486b0c30a1381e7bd. Signed-off-by: James Hilliard Signed-off-by: Peter Korsgaard --- package/ruby/ruby.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/ruby/ruby.mk b/package/ruby/ruby.mk index 5d5a34c096..5e8b40a556 100644 --- a/package/ruby/ruby.mk +++ b/package/ruby/ruby.mk @@ -26,10 +26,12 @@ RUBY_CONF_OPTS = \ --disable-install-doc \ --disable-rpath \ --disable-rubygems \ - --disable-yjit + --disable-yjit \ + --disable-zjit HOST_RUBY_CONF_OPTS = \ --disable-install-doc \ --disable-yjit \ + --disable-zjit \ --with-out-ext=curses,readline \ --without-gmp