Re: [dpdk-dev] [PATCH] config/ppc: fix build with GCC >= 10

2021-09-15 Thread David Marchand
On Wed, Sep 15, 2021 at 11:08 AM Bruce Richardson wrote: > On Wed, Sep 15, 2021 at 09:14:34AM +0100, Ferruh Yigit wrote: > > On 9/15/2021 6:08 AM, David Marchand wrote: > > > Like for python, multiline statements in meson must either use a > > > backslash character (explicit continuation) or be en

Re: [dpdk-dev] [PATCH] config/ppc: fix build with GCC >= 10

2021-09-15 Thread Bruce Richardson
On Wed, Sep 15, 2021 at 09:14:34AM +0100, Ferruh Yigit wrote: > On 9/15/2021 6:08 AM, David Marchand wrote: > > Like for python, multiline statements in meson must either use a > > backslash character (explicit continuation) or be enclosed in () > > (implicit continuation). > > > > python PEP8 rec

Re: [dpdk-dev] [PATCH] config/ppc: fix build with GCC >= 10

2021-09-15 Thread Ferruh Yigit
On 9/15/2021 6:08 AM, David Marchand wrote: > Like for python, multiline statements in meson must either use a > backslash character (explicit continuation) or be enclosed in () > (implicit continuation). > > python PEP8 recommends the latter [1], and it looks like meson had > an issue with backsl

[dpdk-dev] [PATCH] config/ppc: fix build with GCC >= 10

2021-09-14 Thread David Marchand
Like for python, multiline statements in meson must either use a backslash character (explicit continuation) or be enclosed in () (implicit continuation). python PEP8 recommends the latter [1], and it looks like meson had an issue with backslash before 0.50 [2]. 1: https://www.python.org/dev/peps