Re: [dpdk-dev] [PATCH v1] baseband/turbo_sw: update meson for more dynamic compilation

2020-10-06 Thread Akhil Goyal
> > On Thu, Sep 03, 2020 at 06:05:35PM -0700, Nicolas Chautru wrote: > > The meson for the turbo_sw PMD is updated to prevent the > > requirement for any device specific toplevel flags to be > > passed down (unlike what used to be the case with make). > > The linking to the optional libraries is p

Re: [dpdk-dev] [PATCH v1] baseband/turbo_sw: update meson for more dynamic compilation

2020-09-04 Thread Bruce Richardson
On Thu, Sep 03, 2020 at 06:05:35PM -0700, Nicolas Chautru wrote: > The meson for the turbo_sw PMD is updated to prevent the > requirement for any device specific toplevel flags to be > passed down (unlike what used to be the case with make). > The linking to the optional libraries is purely auto >

[dpdk-dev] [PATCH v1] baseband/turbo_sw: update meson for more dynamic compilation

2020-09-03 Thread Nicolas Chautru
The meson for the turbo_sw PMD is updated to prevent the requirement for any device specific toplevel flags to be passed down (unlike what used to be the case with make). The linking to the optional libraries is purely auto detected at build time and flags are then set appropriately. Signed-off-by

[dpdk-dev] [PATCH v1] baseband/turbo_sw: update meson for more dynamic compilation

2020-09-03 Thread Nicolas Chautru
In parallel of moving to meson by default as part of this serie https://patches.dpdk.org/project/dpdk/list/?series=11929, updating the turbo_sw meson so that to no longer rely on toplevel device specific flags, but purely dynamically within meson based on autodetecting the optional libraries. Nico