From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 13 Feb 2026 11:03:16 +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 1vqq15-001DGy-1k for lore@lore.pengutronix.de; Fri, 13 Feb 2026 11:03:16 +0100 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1vqq15-0001oS-Qh; Fri, 13 Feb 2026 11:03:15 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1vqq0o-0000jH-Ia; Fri, 13 Feb 2026 11:02:58 +0100 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vqq0n-000Yer-07; Fri, 13 Feb 2026 11:02:58 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1vqq0o-0000000Bgmm-1P8K; Fri, 13 Feb 2026 11:02:58 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 13 Feb 2026 11:02:58 +0100 Message-ID: <20260213100258.2786069-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260204124651.1716659-1-p.zabel@pengutronix.de> References: <20260204124651.1716659-1-p.zabel@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] 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 Thanks, applied as b3875a0514a6af8e83ad2fd6a0d07285de343e38. Michael [sent from post-receive hook] On Fri, 13 Feb 2026 11:02:58 +0100, Philipp Zabel wrote: > 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 > Message-Id: <20260204124651.1716659-1-p.zabel@pengutronix.de> > Signed-off-by: Michael Olbrich > > 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",