DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros
@ 2019-04-10 20:52 Bruce Richardson
  2019-04-10 20:52 ` Bruce Richardson
                   ` (4 more replies)
  0 siblings, 5 replies; 16+ messages in thread
From: Bruce Richardson @ 2019-04-10 20:52 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson

In order to ensure good test coverage, we sometimes need to run builds
on distros with older compilers, such as gcc 4.8 on RHEL/Centos 7. This
patchset does a small amount of clean-up to test-meson-builds.sh script
to allow it to be used for such gcc builds.

Bruce Richardson (3):
  devtools/test-meson-builds: skip missing compilers
  devtools/test-meson-builds: support older compilers
  devtools/test-meson-builds: fix bash-isms

 devtools/test-meson-builds.sh | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

-- 
1.8.3.1

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

* [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros
  2019-04-10 20:52 [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Bruce Richardson
@ 2019-04-10 20:52 ` Bruce Richardson
  2019-04-10 20:52 ` [dpdk-dev] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers Bruce Richardson
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 16+ messages in thread
From: Bruce Richardson @ 2019-04-10 20:52 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson

In order to ensure good test coverage, we sometimes need to run builds
on distros with older compilers, such as gcc 4.8 on RHEL/Centos 7. This
patchset does a small amount of clean-up to test-meson-builds.sh script
to allow it to be used for such gcc builds.

Bruce Richardson (3):
  devtools/test-meson-builds: skip missing compilers
  devtools/test-meson-builds: support older compilers
  devtools/test-meson-builds: fix bash-isms

 devtools/test-meson-builds.sh | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

-- 
1.8.3.1


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

* [dpdk-dev] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers
  2019-04-10 20:52 [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Bruce Richardson
  2019-04-10 20:52 ` Bruce Richardson
@ 2019-04-10 20:52 ` Bruce Richardson
  2019-04-10 20:52   ` Bruce Richardson
  2019-04-17 14:59   ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon
  2019-04-10 20:52 ` [dpdk-dev] [PATCH 2/3] devtools/test-meson-builds: support older compilers Bruce Richardson
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 16+ messages in thread
From: Bruce Richardson @ 2019-04-10 20:52 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

if either gcc or clang are missing, skip doing those builds.
This allows a setup to only do, e.g. gcc tests.

CC: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 devtools/test-meson-builds.sh | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/devtools/test-meson-builds.sh b/devtools/test-meson-builds.sh
index b3b5cfb..60e4168 100755
--- a/devtools/test-meson-builds.sh
+++ b/devtools/test-meson-builds.sh
@@ -54,10 +54,12 @@ fi
 
 # shared and static linked builds with gcc and clang
 for c in gcc clang ; do
-	for s in static shared ; do
-		export CC="ccache $c"
-		build build-$c-$s --default-library=$s
-	done
+	if command -v $c >/dev/null 2>&1 ; then
+		for s in static shared ; do
+			export CC="ccache $c"
+			build build-$c-$s --default-library=$s
+		done
+	fi
 done
 
 # test compilation with minimal x86 instruction set
-- 
1.8.3.1

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

* [dpdk-dev] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers
  2019-04-10 20:52 ` [dpdk-dev] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers Bruce Richardson
@ 2019-04-10 20:52   ` Bruce Richardson
  2019-04-17 14:59   ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon
  1 sibling, 0 replies; 16+ messages in thread
From: Bruce Richardson @ 2019-04-10 20:52 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

if either gcc or clang are missing, skip doing those builds.
This allows a setup to only do, e.g. gcc tests.

CC: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 devtools/test-meson-builds.sh | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/devtools/test-meson-builds.sh b/devtools/test-meson-builds.sh
index b3b5cfb..60e4168 100755
--- a/devtools/test-meson-builds.sh
+++ b/devtools/test-meson-builds.sh
@@ -54,10 +54,12 @@ fi
 
 # shared and static linked builds with gcc and clang
 for c in gcc clang ; do
-	for s in static shared ; do
-		export CC="ccache $c"
-		build build-$c-$s --default-library=$s
-	done
+	if command -v $c >/dev/null 2>&1 ; then
+		for s in static shared ; do
+			export CC="ccache $c"
+			build build-$c-$s --default-library=$s
+		done
+	fi
 done
 
 # test compilation with minimal x86 instruction set
-- 
1.8.3.1


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

* [dpdk-dev] [PATCH 2/3] devtools/test-meson-builds: support older compilers
  2019-04-10 20:52 [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Bruce Richardson
  2019-04-10 20:52 ` Bruce Richardson
  2019-04-10 20:52 ` [dpdk-dev] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers Bruce Richardson
@ 2019-04-10 20:52 ` Bruce Richardson
  2019-04-10 20:52   ` Bruce Richardson
  2019-04-10 20:52 ` [dpdk-dev] [PATCH 3/3] devtools/test-meson-builds: fix bash-isms Bruce Richardson
  2019-04-11  8:48 ` [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Luca Boccassi
  4 siblings, 1 reply; 16+ messages in thread
From: Bruce Richardson @ 2019-04-10 20:52 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Older versions of GCC, such as on Redhat/CentOS 7, don't support
-march=nehalem, but need -march=corei7 instead.

CC: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 devtools/test-meson-builds.sh | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/devtools/test-meson-builds.sh b/devtools/test-meson-builds.sh
index 60e4168..0b14030 100755
--- a/devtools/test-meson-builds.sh
+++ b/devtools/test-meson-builds.sh
@@ -63,7 +63,12 @@ for c in gcc clang ; do
 done
 
 # test compilation with minimal x86 instruction set
-build build-x86-default -Dmachine=nehalem $use_shared
+default_machine='nehalem'
+ok=$(cc -march=$default_machine -E - < /dev/null > /dev/null 2>&1 || echo false)
+if [ "$ok" = "false" ] ; then
+	default_machine='corei7'
+fi
+build build-x86-default -Dmachine=$default_machine $use_shared
 
 # enable cross compilation if gcc cross-compiler is found
 c=aarch64-linux-gnu-gcc
-- 
1.8.3.1

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

* [dpdk-dev] [PATCH 2/3] devtools/test-meson-builds: support older compilers
  2019-04-10 20:52 ` [dpdk-dev] [PATCH 2/3] devtools/test-meson-builds: support older compilers Bruce Richardson
@ 2019-04-10 20:52   ` Bruce Richardson
  0 siblings, 0 replies; 16+ messages in thread
From: Bruce Richardson @ 2019-04-10 20:52 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Older versions of GCC, such as on Redhat/CentOS 7, don't support
-march=nehalem, but need -march=corei7 instead.

CC: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 devtools/test-meson-builds.sh | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/devtools/test-meson-builds.sh b/devtools/test-meson-builds.sh
index 60e4168..0b14030 100755
--- a/devtools/test-meson-builds.sh
+++ b/devtools/test-meson-builds.sh
@@ -63,7 +63,12 @@ for c in gcc clang ; do
 done
 
 # test compilation with minimal x86 instruction set
-build build-x86-default -Dmachine=nehalem $use_shared
+default_machine='nehalem'
+ok=$(cc -march=$default_machine -E - < /dev/null > /dev/null 2>&1 || echo false)
+if [ "$ok" = "false" ] ; then
+	default_machine='corei7'
+fi
+build build-x86-default -Dmachine=$default_machine $use_shared
 
 # enable cross compilation if gcc cross-compiler is found
 c=aarch64-linux-gnu-gcc
-- 
1.8.3.1


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

* [dpdk-dev] [PATCH 3/3] devtools/test-meson-builds: fix bash-isms
  2019-04-10 20:52 [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Bruce Richardson
                   ` (2 preceding siblings ...)
  2019-04-10 20:52 ` [dpdk-dev] [PATCH 2/3] devtools/test-meson-builds: support older compilers Bruce Richardson
@ 2019-04-10 20:52 ` Bruce Richardson
  2019-04-10 20:52   ` Bruce Richardson
  2019-04-11  8:48 ` [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Luca Boccassi
  4 siblings, 1 reply; 16+ messages in thread
From: Bruce Richardson @ 2019-04-10 20:52 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

The use of "==" is non-standard extension from bash, so use "="
for comparisons instead.

CC: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 devtools/test-meson-builds.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/devtools/test-meson-builds.sh b/devtools/test-meson-builds.sh
index 0b14030..17680f8 100755
--- a/devtools/test-meson-builds.sh
+++ b/devtools/test-meson-builds.sh
@@ -46,9 +46,9 @@ build () # <directory> <meson options>
 	fi
 }
 
-if [ "$1" == "-vv" ] ; then
+if [ "$1" = "-vv" ] ; then
 	TEST_MESON_BUILD_VERY_VERBOSE=1
-elif [ "$1" == "-v" ] ; then
+elif [ "$1" = "-v" ] ; then
 	TEST_MESON_BUILD_VERBOSE=1
 fi
 
-- 
1.8.3.1

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

* [dpdk-dev] [PATCH 3/3] devtools/test-meson-builds: fix bash-isms
  2019-04-10 20:52 ` [dpdk-dev] [PATCH 3/3] devtools/test-meson-builds: fix bash-isms Bruce Richardson
@ 2019-04-10 20:52   ` Bruce Richardson
  0 siblings, 0 replies; 16+ messages in thread
From: Bruce Richardson @ 2019-04-10 20:52 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

The use of "==" is non-standard extension from bash, so use "="
for comparisons instead.

CC: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 devtools/test-meson-builds.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/devtools/test-meson-builds.sh b/devtools/test-meson-builds.sh
index 0b14030..17680f8 100755
--- a/devtools/test-meson-builds.sh
+++ b/devtools/test-meson-builds.sh
@@ -46,9 +46,9 @@ build () # <directory> <meson options>
 	fi
 }
 
-if [ "$1" == "-vv" ] ; then
+if [ "$1" = "-vv" ] ; then
 	TEST_MESON_BUILD_VERY_VERBOSE=1
-elif [ "$1" == "-v" ] ; then
+elif [ "$1" = "-v" ] ; then
 	TEST_MESON_BUILD_VERBOSE=1
 fi
 
-- 
1.8.3.1


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

* Re: [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros
  2019-04-10 20:52 [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Bruce Richardson
                   ` (3 preceding siblings ...)
  2019-04-10 20:52 ` [dpdk-dev] [PATCH 3/3] devtools/test-meson-builds: fix bash-isms Bruce Richardson
@ 2019-04-11  8:48 ` Luca Boccassi
  2019-04-11  8:48   ` Luca Boccassi
  2019-04-17 15:17   ` Thomas Monjalon
  4 siblings, 2 replies; 16+ messages in thread
From: Luca Boccassi @ 2019-04-11  8:48 UTC (permalink / raw)
  To: Bruce Richardson, dev

On Wed, 2019-04-10 at 21:52 +0100, Bruce Richardson wrote:
> In order to ensure good test coverage, we sometimes need to run
> builds
> on distros with older compilers, such as gcc 4.8 on RHEL/Centos 7.
> This
> patchset does a small amount of clean-up to test-meson-builds.sh
> script
> to allow it to be used for such gcc builds.
> 
> Bruce Richardson (3):
>   devtools/test-meson-builds: skip missing compilers
>   devtools/test-meson-builds: support older compilers
>   devtools/test-meson-builds: fix bash-isms
> 
>  devtools/test-meson-builds.sh | 21 ++++++++++++++-------
>  1 file changed, 14 insertions(+), 7 deletions(-)

Series-acked-by: Luca Boccassi <bluca@debian.org>

-- 
Kind regards,
Luca Boccassi

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

* Re: [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros
  2019-04-11  8:48 ` [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Luca Boccassi
@ 2019-04-11  8:48   ` Luca Boccassi
  2019-04-17 15:17   ` Thomas Monjalon
  1 sibling, 0 replies; 16+ messages in thread
From: Luca Boccassi @ 2019-04-11  8:48 UTC (permalink / raw)
  To: Bruce Richardson, dev

On Wed, 2019-04-10 at 21:52 +0100, Bruce Richardson wrote:
> In order to ensure good test coverage, we sometimes need to run
> builds
> on distros with older compilers, such as gcc 4.8 on RHEL/Centos 7.
> This
> patchset does a small amount of clean-up to test-meson-builds.sh
> script
> to allow it to be used for such gcc builds.
> 
> Bruce Richardson (3):
>   devtools/test-meson-builds: skip missing compilers
>   devtools/test-meson-builds: support older compilers
>   devtools/test-meson-builds: fix bash-isms
> 
>  devtools/test-meson-builds.sh | 21 ++++++++++++++-------
>  1 file changed, 14 insertions(+), 7 deletions(-)

Series-acked-by: Luca Boccassi <bluca@debian.org>

-- 
Kind regards,
Luca Boccassi

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

* Re: [dpdk-dev] [dpdk-stable] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers
  2019-04-10 20:52 ` [dpdk-dev] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers Bruce Richardson
  2019-04-10 20:52   ` Bruce Richardson
@ 2019-04-17 14:59   ` Thomas Monjalon
  2019-04-17 14:59     ` Thomas Monjalon
  2019-04-17 15:04     ` Bruce Richardson
  1 sibling, 2 replies; 16+ messages in thread
From: Thomas Monjalon @ 2019-04-17 14:59 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: stable, dev

10/04/2019 22:52, Bruce Richardson:
> if either gcc or clang are missing, skip doing those builds.
> This allows a setup to only do, e.g. gcc tests.
> 
> CC: stable@dpdk.org
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
> --- a/devtools/test-meson-builds.sh
> +++ b/devtools/test-meson-builds.sh
>  # shared and static linked builds with gcc and clang
>  for c in gcc clang ; do
> -	for s in static shared ; do
> -		export CC="ccache $c"
> -		build build-$c-$s --default-library=$s
> -	done
> +	if command -v $c >/dev/null 2>&1 ; then
> +		for s in static shared ; do
> +			export CC="ccache $c"
> +			build build-$c-$s --default-library=$s
> +		done
> +	fi

May I suggest this oneline change instead?

command -v $c >/dev/null 2>&1 || continue

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

* Re: [dpdk-dev] [dpdk-stable] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers
  2019-04-17 14:59   ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon
@ 2019-04-17 14:59     ` Thomas Monjalon
  2019-04-17 15:04     ` Bruce Richardson
  1 sibling, 0 replies; 16+ messages in thread
From: Thomas Monjalon @ 2019-04-17 14:59 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: stable, dev

10/04/2019 22:52, Bruce Richardson:
> if either gcc or clang are missing, skip doing those builds.
> This allows a setup to only do, e.g. gcc tests.
> 
> CC: stable@dpdk.org
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
> --- a/devtools/test-meson-builds.sh
> +++ b/devtools/test-meson-builds.sh
>  # shared and static linked builds with gcc and clang
>  for c in gcc clang ; do
> -	for s in static shared ; do
> -		export CC="ccache $c"
> -		build build-$c-$s --default-library=$s
> -	done
> +	if command -v $c >/dev/null 2>&1 ; then
> +		for s in static shared ; do
> +			export CC="ccache $c"
> +			build build-$c-$s --default-library=$s
> +		done
> +	fi

May I suggest this oneline change instead?

command -v $c >/dev/null 2>&1 || continue




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

* Re: [dpdk-dev] [dpdk-stable] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers
  2019-04-17 14:59   ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon
  2019-04-17 14:59     ` Thomas Monjalon
@ 2019-04-17 15:04     ` Bruce Richardson
  2019-04-17 15:04       ` Bruce Richardson
  1 sibling, 1 reply; 16+ messages in thread
From: Bruce Richardson @ 2019-04-17 15:04 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: stable, dev

On Wed, Apr 17, 2019 at 04:59:53PM +0200, Thomas Monjalon wrote:
> 10/04/2019 22:52, Bruce Richardson:
> > if either gcc or clang are missing, skip doing those builds.
> > This allows a setup to only do, e.g. gcc tests.
> > 
> > CC: stable@dpdk.org
> > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> > ---
> > --- a/devtools/test-meson-builds.sh
> > +++ b/devtools/test-meson-builds.sh
> >  # shared and static linked builds with gcc and clang
> >  for c in gcc clang ; do
> > -	for s in static shared ; do
> > -		export CC="ccache $c"
> > -		build build-$c-$s --default-library=$s
> > -	done
> > +	if command -v $c >/dev/null 2>&1 ; then
> > +		for s in static shared ; do
> > +			export CC="ccache $c"
> > +			build build-$c-$s --default-library=$s
> > +		done
> > +	fi
> 
> May I suggest this oneline change instead?
> 
> command -v $c >/dev/null 2>&1 || continue
> 
Looks fine to me. Make the change on apply if you like, otherwise let me
know if you want a V2.

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

* Re: [dpdk-dev] [dpdk-stable] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers
  2019-04-17 15:04     ` Bruce Richardson
@ 2019-04-17 15:04       ` Bruce Richardson
  0 siblings, 0 replies; 16+ messages in thread
From: Bruce Richardson @ 2019-04-17 15:04 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: stable, dev

On Wed, Apr 17, 2019 at 04:59:53PM +0200, Thomas Monjalon wrote:
> 10/04/2019 22:52, Bruce Richardson:
> > if either gcc or clang are missing, skip doing those builds.
> > This allows a setup to only do, e.g. gcc tests.
> > 
> > CC: stable@dpdk.org
> > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> > ---
> > --- a/devtools/test-meson-builds.sh
> > +++ b/devtools/test-meson-builds.sh
> >  # shared and static linked builds with gcc and clang
> >  for c in gcc clang ; do
> > -	for s in static shared ; do
> > -		export CC="ccache $c"
> > -		build build-$c-$s --default-library=$s
> > -	done
> > +	if command -v $c >/dev/null 2>&1 ; then
> > +		for s in static shared ; do
> > +			export CC="ccache $c"
> > +			build build-$c-$s --default-library=$s
> > +		done
> > +	fi
> 
> May I suggest this oneline change instead?
> 
> command -v $c >/dev/null 2>&1 || continue
> 
Looks fine to me. Make the change on apply if you like, otherwise let me
know if you want a V2.

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

* Re: [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros
  2019-04-11  8:48 ` [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Luca Boccassi
  2019-04-11  8:48   ` Luca Boccassi
@ 2019-04-17 15:17   ` Thomas Monjalon
  2019-04-17 15:17     ` Thomas Monjalon
  1 sibling, 1 reply; 16+ messages in thread
From: Thomas Monjalon @ 2019-04-17 15:17 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev, Luca Boccassi

11/04/2019 10:48, Luca Boccassi:
> On Wed, 2019-04-10 at 21:52 +0100, Bruce Richardson wrote:
> > In order to ensure good test coverage, we sometimes need to run
> > builds
> > on distros with older compilers, such as gcc 4.8 on RHEL/Centos 7.
> > This
> > patchset does a small amount of clean-up to test-meson-builds.sh
> > script
> > to allow it to be used for such gcc builds.
> > 
> > Bruce Richardson (3):
> >   devtools/test-meson-builds: skip missing compilers
> >   devtools/test-meson-builds: support older compilers
> >   devtools/test-meson-builds: fix bash-isms
> > 
> >  devtools/test-meson-builds.sh | 21 ++++++++++++++-------
> >  1 file changed, 14 insertions(+), 7 deletions(-)
> 
> Series-acked-by: Luca Boccassi <bluca@debian.org>

Applied with proposed change in patch 1, thanks.

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

* Re: [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros
  2019-04-17 15:17   ` Thomas Monjalon
@ 2019-04-17 15:17     ` Thomas Monjalon
  0 siblings, 0 replies; 16+ messages in thread
From: Thomas Monjalon @ 2019-04-17 15:17 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev, Luca Boccassi

11/04/2019 10:48, Luca Boccassi:
> On Wed, 2019-04-10 at 21:52 +0100, Bruce Richardson wrote:
> > In order to ensure good test coverage, we sometimes need to run
> > builds
> > on distros with older compilers, such as gcc 4.8 on RHEL/Centos 7.
> > This
> > patchset does a small amount of clean-up to test-meson-builds.sh
> > script
> > to allow it to be used for such gcc builds.
> > 
> > Bruce Richardson (3):
> >   devtools/test-meson-builds: skip missing compilers
> >   devtools/test-meson-builds: support older compilers
> >   devtools/test-meson-builds: fix bash-isms
> > 
> >  devtools/test-meson-builds.sh | 21 ++++++++++++++-------
> >  1 file changed, 14 insertions(+), 7 deletions(-)
> 
> Series-acked-by: Luca Boccassi <bluca@debian.org>

Applied with proposed change in patch 1, thanks.




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

end of thread, other threads:[~2019-04-17 15:17 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-10 20:52 [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Bruce Richardson
2019-04-10 20:52 ` Bruce Richardson
2019-04-10 20:52 ` [dpdk-dev] [PATCH 1/3] devtools/test-meson-builds: skip missing compilers Bruce Richardson
2019-04-10 20:52   ` Bruce Richardson
2019-04-17 14:59   ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon
2019-04-17 14:59     ` Thomas Monjalon
2019-04-17 15:04     ` Bruce Richardson
2019-04-17 15:04       ` Bruce Richardson
2019-04-10 20:52 ` [dpdk-dev] [PATCH 2/3] devtools/test-meson-builds: support older compilers Bruce Richardson
2019-04-10 20:52   ` Bruce Richardson
2019-04-10 20:52 ` [dpdk-dev] [PATCH 3/3] devtools/test-meson-builds: fix bash-isms Bruce Richardson
2019-04-10 20:52   ` Bruce Richardson
2019-04-11  8:48 ` [dpdk-dev] [PATCH 0/3] fix test-meson-builds for older distros Luca Boccassi
2019-04-11  8:48   ` Luca Boccassi
2019-04-17 15:17   ` Thomas Monjalon
2019-04-17 15:17     ` Thomas Monjalon

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).