DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] devtools: update Meson setup command
@ 2022-12-06 10:16 Thomas Monjalon
  2022-12-06 10:27 ` David Marchand
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Thomas Monjalon @ 2022-12-06 10:16 UTC (permalink / raw)
  To: dev; +Cc: Aaron Conole, Michael Santana, Bruce Richardson

The command "meson build" causes a deprecation warning with meson 0.64:

WARNING: Running the setup command as `meson [options]` instead of
	`meson setup [options]` is ambiguous and deprecated.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
 .ci/linux-build.sh            | 2 +-
 devtools/test-meson-builds.sh | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh
index baec65a914..5225dc71c4 100755
--- a/.ci/linux-build.sh
+++ b/.ci/linux-build.sh
@@ -163,7 +163,7 @@ if [ "$ABI_CHECKS" = "true" ]; then
     if [ ! -d reference ]; then
         refsrcdir=$(readlink -f $(pwd)/../dpdk-$REF_GIT_TAG)
         git clone --single-branch -b "$REF_GIT_TAG" $REF_GIT_REPO $refsrcdir
-        meson $OPTS -Dexamples= $refsrcdir $refsrcdir/build
+        meson setup $OPTS -Dexamples= $refsrcdir $refsrcdir/build
         ninja -C $refsrcdir/build
         DESTDIR=$(pwd)/reference ninja -C $refsrcdir/build install
         devtools/gen-abi.sh reference
diff --git a/devtools/test-meson-builds.sh b/devtools/test-meson-builds.sh
index 3a308bc9af..7efd5576fc 100755
--- a/devtools/test-meson-builds.sh
+++ b/devtools/test-meson-builds.sh
@@ -124,8 +124,8 @@ config () # <dir> <builddir> <meson options>
 		options="$options -D$option"
 	done
 	options="$options $*"
-	echo "$MESON $options $dir $builddir" >&$verbose
-	$MESON $options $dir $builddir
+	echo "$MESON setup $options $dir $builddir" >&$verbose
+	$MESON setup $options $dir $builddir
 }
 
 compile () # <builddir>
-- 
2.38.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] devtools: update Meson setup command
  2022-12-06 10:16 [PATCH] devtools: update Meson setup command Thomas Monjalon
@ 2022-12-06 10:27 ` David Marchand
  2022-12-08 11:25   ` Thomas Monjalon
  2022-12-06 15:41 ` Tyler Retzlaff
  2022-12-07 13:25 ` Aaron Conole
  2 siblings, 1 reply; 5+ messages in thread
From: David Marchand @ 2022-12-06 10:27 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev, Aaron Conole, Michael Santana, Bruce Richardson

On Tue, Dec 6, 2022 at 11:17 AM Thomas Monjalon <thomas@monjalon.net> wrote:
>
> The command "meson build" causes a deprecation warning with meson 0.64:
>
> WARNING: Running the setup command as `meson [options]` instead of
>         `meson setup [options]` is ambiguous and deprecated.
>
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>

Reviewed-by: David Marchand <david.marchand@redhat.com>


-- 
David Marchand


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] devtools: update Meson setup command
  2022-12-06 10:16 [PATCH] devtools: update Meson setup command Thomas Monjalon
  2022-12-06 10:27 ` David Marchand
@ 2022-12-06 15:41 ` Tyler Retzlaff
  2022-12-07 13:25 ` Aaron Conole
  2 siblings, 0 replies; 5+ messages in thread
From: Tyler Retzlaff @ 2022-12-06 15:41 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev, Aaron Conole, Michael Santana, Bruce Richardson

On Tue, Dec 06, 2022 at 11:16:48AM +0100, Thomas Monjalon wrote:
> The command "meson build" causes a deprecation warning with meson 0.64:
> 
> WARNING: Running the setup command as `meson [options]` instead of
> 	`meson setup [options]` is ambiguous and deprecated.
> 
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> ---

Acked-by: Tyler Retzlaff <roretzla@linux.microsoft.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] devtools: update Meson setup command
  2022-12-06 10:16 [PATCH] devtools: update Meson setup command Thomas Monjalon
  2022-12-06 10:27 ` David Marchand
  2022-12-06 15:41 ` Tyler Retzlaff
@ 2022-12-07 13:25 ` Aaron Conole
  2 siblings, 0 replies; 5+ messages in thread
From: Aaron Conole @ 2022-12-07 13:25 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev, Michael Santana, Bruce Richardson

Thomas Monjalon <thomas@monjalon.net> writes:

> The command "meson build" causes a deprecation warning with meson 0.64:
>
> WARNING: Running the setup command as `meson [options]` instead of
> 	`meson setup [options]` is ambiguous and deprecated.
>
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> ---

Acked-by: Aaron Conole <aconole@redhat.com>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] devtools: update Meson setup command
  2022-12-06 10:27 ` David Marchand
@ 2022-12-08 11:25   ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2022-12-08 11:25 UTC (permalink / raw)
  To: dev; +Cc: Aaron Conole, Michael Santana, Bruce Richardson, David Marchand

06/12/2022 11:27, David Marchand:
> On Tue, Dec 6, 2022 at 11:17 AM Thomas Monjalon <thomas@monjalon.net> wrote:
> >
> > The command "meson build" causes a deprecation warning with meson 0.64:
> >
> > WARNING: Running the setup command as `meson [options]` instead of
> >         `meson setup [options]` is ambiguous and deprecated.
> >
> > Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> 
> Reviewed-by: David Marchand <david.marchand@redhat.com>

Applied




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-12-08 11:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-06 10:16 [PATCH] devtools: update Meson setup command Thomas Monjalon
2022-12-06 10:27 ` David Marchand
2022-12-08 11:25   ` Thomas Monjalon
2022-12-06 15:41 ` Tyler Retzlaff
2022-12-07 13:25 ` Aaron Conole

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).