Re: [dpdk-dev] [PATCH] net/i40e: fix missing deps for avx2 code in meson

2018-02-01 Thread Bruce Richardson
On Wed, Jan 31, 2018 at 05:09:05PM +, Bruce Richardson wrote: > The AVX2 code path includes files from the ethdev, hash and kvargs libs. > These are not listed as dependencies in the case where AVX2 is not in > the default instruction set for the build e.g. machine=nehalem. This > leads to comp

[dpdk-dev] [PATCH] net/i40e: fix missing deps for avx2 code in meson

2018-01-31 Thread Bruce Richardson
The AVX2 code path includes files from the ethdev, hash and kvargs libs. These are not listed as dependencies in the case where AVX2 is not in the default instruction set for the build e.g. machine=nehalem. This leads to compiler errors as the header files needed cannot be found. Fixes: e940646b20