From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 04 Feb 2026 13:47:01 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vncHd-008kxT-1t for lore@lore.pengutronix.de; Wed, 04 Feb 2026 13:47:01 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1vncHd-0008L4-0L; Wed, 04 Feb 2026 13:47:01 +0100 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1vncHX-0008KV-Nl; Wed, 04 Feb 2026 13:46:55 +0100 From: Philipp Zabel To: ptxdist@pengutronix.de Date: Wed, 4 Feb 2026 13:46:50 +0100 Message-ID: <20260204124651.1716659-1-p.zabel@pengutronix.de> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH 1/2] configure_helper: ignore new Meson 1.10.0 builtin options X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Philipp Zabel Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Ignore new Meson builtin options "b_thinlto_cache", "b_thinlto_cache_dir", "cpp_importstd", and "os2_emxomf", and "python.build_config" (all since 1.10.0). Signed-off-by: Philipp Zabel --- scripts/configure_helper.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py index 3f2d50856252..d58918183124 100755 --- a/scripts/configure_helper.py +++ b/scripts/configure_helper.py @@ -105,6 +105,8 @@ meson_blacklist = [ "b_pch", "b_pgo", "b_pie", + "b_thinlto_cache", + "b_thinlto_cache_dir", "b_sanitize", "b_staticpic", "backend_max_links", @@ -131,6 +133,7 @@ meson_blacklist = [ "cpp_args", "cpp_debugstl", "cpp_eh", + "cpp_importstd", "cpp_link_args", "cpp_rtti", "cpp_std", @@ -151,9 +154,11 @@ meson_blacklist = [ "localstatedir", "mandir", "optimization", + "os2_emxomf", "pkg_config_path", "prefer_static", "python.allow_limited_api", + "python.build_config", "python.bytecompile", "python.install_env", "python.platlibdir", -- 2.47.3