* [ptxdist] [PATCH] configure_helper: blacklist Meson builtin options
@ 2020-07-08 12:47 Philipp Zabel
2020-07-17 11:57 ` [ptxdist] [APPLIED] " Michael Olbrich
0 siblings, 1 reply; 3+ messages in thread
From: Philipp Zabel @ 2020-07-08 12:47 UTC (permalink / raw)
To: ptxdist
Blacklist the build.cpp_rtti, build.objc_args, build.objc_link_args,
build.objcpp_args, build.objcpp_link_args, and cpp_rtti builtin
options.
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
scripts/configure_helper.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py
index a29d80ecf0f3..1735f9b7d0d5 100755
--- a/scripts/configure_helper.py
+++ b/scripts/configure_helper.py
@@ -116,7 +116,12 @@ meson_blacklist = [
"build.cpp_debugstl",
"build.cpp_eh",
"build.cpp_link_args",
+ "build.cpp_rtti",
"build.cpp_std",
+ "build.objc_args",
+ "build.objc_link_args",
+ "build.objcpp_args",
+ "build.objcpp_link_args",
"build.pkg_config_path",
"c_args",
"c_link_args",
@@ -126,6 +131,7 @@ meson_blacklist = [
"cpp_debugstl",
"cpp_eh",
"cpp_link_args",
+ "cpp_rtti",
"cpp_std",
"datadir",
"debug",
--
2.20.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ptxdist] [APPLIED] configure_helper: blacklist Meson builtin options
2020-07-08 12:47 [ptxdist] [PATCH] configure_helper: blacklist Meson builtin options Philipp Zabel
@ 2020-07-17 11:57 ` Michael Olbrich
0 siblings, 0 replies; 3+ messages in thread
From: Michael Olbrich @ 2020-07-17 11:57 UTC (permalink / raw)
To: ptxdist; +Cc: Philipp Zabel
Thanks, applied as 98a0a85e3b218f6e013ac2e07e5892ebac6f85fc.
Michael
[sent from post-receive hook]
On Fri, 17 Jul 2020 13:57:01 +0200, Philipp Zabel <p.zabel@pengutronix.de> wrote:
> Blacklist the build.cpp_rtti, build.objc_args, build.objc_link_args,
> build.objcpp_args, build.objcpp_link_args, and cpp_rtti builtin
> options.
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> Message-Id: <20200708124700.11255-1-p.zabel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py
> index a29d80ecf0f3..1735f9b7d0d5 100755
> --- a/scripts/configure_helper.py
> +++ b/scripts/configure_helper.py
> @@ -116,7 +116,12 @@ meson_blacklist = [
> "build.cpp_debugstl",
> "build.cpp_eh",
> "build.cpp_link_args",
> + "build.cpp_rtti",
> "build.cpp_std",
> + "build.objc_args",
> + "build.objc_link_args",
> + "build.objcpp_args",
> + "build.objcpp_link_args",
> "build.pkg_config_path",
> "c_args",
> "c_link_args",
> @@ -126,6 +131,7 @@ meson_blacklist = [
> "cpp_debugstl",
> "cpp_eh",
> "cpp_link_args",
> + "cpp_rtti",
> "cpp_std",
> "datadir",
> "debug",
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 3+ messages in thread
* [ptxdist] [PATCH] configure_helper: blacklist Meson builtin options
@ 2019-11-06 16:58 Philipp Zabel
0 siblings, 0 replies; 3+ messages in thread
From: Philipp Zabel @ 2019-11-06 16:58 UTC (permalink / raw)
To: ptxdist
Blacklist the cmake_prefix_path, cpp_eh, and pkg_config_path builtin
options and the new (since 0.51.0) 'build.' prefixed options.
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
scripts/configure_helper.py | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/scripts/configure_helper.py b/scripts/configure_helper.py
index df1e597b70e8..3af7b416a4f7 100755
--- a/scripts/configure_helper.py
+++ b/scripts/configure_helper.py
@@ -108,11 +108,23 @@ meson_blacklist = [
"b_staticpic",
"backend_max_links",
"bindir",
+ "build.c_args",
+ "build.c_link_args",
+ "build.c_std",
+ "build.cmake_prefix_path",
+ "build.cpp_args",
+ "build.cpp_debugstl",
+ "build.cpp_eh",
+ "build.cpp_link_args",
+ "build.cpp_std",
+ "build.pkg_config_path",
"c_args",
"c_link_args",
"c_std",
+ "cmake_prefix_path",
"cpp_args",
"cpp_debugstl",
+ "cpp_eh",
"cpp_link_args",
"cpp_std",
"datadir",
@@ -128,6 +140,7 @@ meson_blacklist = [
"localstatedir",
"mandir",
"optimization",
+ "pkg_config_path",
"sbindir",
"sharedstatedir",
"stdsplit",
--
2.20.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-07-17 11:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-08 12:47 [ptxdist] [PATCH] configure_helper: blacklist Meson builtin options Philipp Zabel
2020-07-17 11:57 ` [ptxdist] [APPLIED] " Michael Olbrich
-- strict thread matches above, loose matches on Subject: below --
2019-11-06 16:58 [ptxdist] [PATCH] " Philipp Zabel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox