* [Buildroot] [PATCH 1/1] package/pkg-meson: Fix deprecation warnings in cross-compilation config
@ 2020-12-27 2:15 Gleb Mazovetskiy
2020-12-28 21:50 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Gleb Mazovetskiy @ 2020-12-27 2:15 UTC (permalink / raw)
To: buildroot
As of meson 0.56.0, `<lang>_args` and `<lang>_link_args` in the `[properties]` section are deprecated and should be placed in the `[built-in options]` section instead.
Source: https://mesonbuild.com/Machine-files.html#properties
Fixes the following deprecation warnings:
> DEPRECATION: c_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
> DEPRECATION: c_link_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
> DEPRECATION: cpp_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
> DEPRECATION: cpp_link_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
Signed-off-by: Gleb Mazovetskiy <glex.spb@gmail.com>
---
package/meson/cross-compilation.conf.in | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/package/meson/cross-compilation.conf.in b/package/meson/cross-compilation.conf.in
index 1880051315..37b49eea3b 100644
--- a/package/meson/cross-compilation.conf.in
+++ b/package/meson/cross-compilation.conf.in
@@ -12,12 +12,14 @@ pkgconfig = '@HOST_DIR@/bin/pkgconf'
g-ir-compiler = '@STAGING_DIR@/usr/bin/g-ir-compiler'
g-ir-scanner = '@STAGING_DIR@/usr/bin/g-ir-scanner'
-[properties]
-needs_exe_wrapper = true
+[built-in options]
c_args = [@TARGET_CFLAGS@]
c_link_args = [@TARGET_LDFLAGS@]
cpp_args = [@TARGET_CXXFLAGS@]
cpp_link_args = [@TARGET_LDFLAGS@]
+
+[properties]
+needs_exe_wrapper = true
sys_root = '@STAGING_DIR@'
pkg_config_libdir = '@STAGING_DIR@/usr/lib/pkgconfig:@STAGING_DIR@/usr/share/pkgconfig'
pkg_config_static = '@STATIC@'
--
2.27.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH 1/1] package/pkg-meson: Fix deprecation warnings in cross-compilation config
2020-12-27 2:15 [Buildroot] [PATCH 1/1] package/pkg-meson: Fix deprecation warnings in cross-compilation config Gleb Mazovetskiy
@ 2020-12-28 21:50 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2020-12-28 21:50 UTC (permalink / raw)
To: buildroot
On Sun, 27 Dec 2020 02:15:05 +0000
Gleb Mazovetskiy <glex.spb@gmail.com> wrote:
> As of meson 0.56.0, `<lang>_args` and `<lang>_link_args` in the `[properties]` section are deprecated and should be placed in the `[built-in options]` section instead.
>
> Source: https://mesonbuild.com/Machine-files.html#properties
>
> Fixes the following deprecation warnings:
>
> > DEPRECATION: c_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
> > DEPRECATION: c_link_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
> > DEPRECATION: cpp_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
> > DEPRECATION: cpp_link_args in the [properties] section of the machine file is deprecated, use the [built-in options] section.
>
> Signed-off-by: Gleb Mazovetskiy <glex.spb@gmail.com>
> ---
> package/meson/cross-compilation.conf.in | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-12-28 21:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-27 2:15 [Buildroot] [PATCH 1/1] package/pkg-meson: Fix deprecation warnings in cross-compilation config Gleb Mazovetskiy
2020-12-28 21:50 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox