On Mon, Mar 22, 2021 at 9:39 AM Gabriel Ganne <gabriel.ga...@6wind.com> wrote: > > WARNING: Project targetting '>= 0.47.1' but tried to use feature introduced > in '0.48.0': console arg in custom_target > > console argument is used within kernel/linux/kni/meson.build > > Signed-off-by: Gabriel Ganne <gabriel.ga...@6wind.com> > --- > meson.build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meson.build b/meson.build > index 7778e18200a9..65c46f051365 100644 > --- a/meson.build > +++ b/meson.build > @@ -8,7 +8,7 @@ project('DPDK', 'C', > files('VERSION')).stdout().strip(), > license: 'BSD', > default_options: ['buildtype=release', 'default_library=static'], > - meson_version: '>= 0.47.1' > + meson_version: '>= 0.48.0' > ) > > # set up some global vars for compiler, platform, configuration, etc. > -- > 2.29.2 >
There are references in the docs and the CI is blocked at 0.47.1 explicitly: .ci/linux-setup.sh:sudo python3 -m pip install --upgrade 'meson==0.47.1' doc/guides/linux_gsg/sys_reqs.rst:* Meson (version 0.47.1+) and ninja doc/guides/prog_guide/build-sdk-meson.rst:3 ``pip`` tool, e.g. ``pip3 install meson``. Version 0.47.1 of meson is doc/guides/windows_gsg/build_dpdk.rst:Recommended version is either Meson 0.47.1 (baseline) or the latest release. -- David Marchand