From: Bruce Richardson Date: Wed, 31 Jan 2018 17:09:05 +0000 (+0000) Subject: net/i40e: fix dependencies for AVX2 build with meson X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=bb17466d09d73436157efd72e46acce40b3140b0;hp=c76a10ec1531b3e5d182b8e9bbd27c48365f91aa;p=dpdk.git net/i40e: fix dependencies for AVX2 build with meson 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: e940646b20fa ("drivers/net: build Intel NIC PMDs with meson") Signed-off-by: Bruce Richardson --- diff --git a/drivers/net/i40e/meson.build b/drivers/net/i40e/meson.build index 504bfdd0c2..8764b0e5b6 100644 --- a/drivers/net/i40e/meson.build +++ b/drivers/net/i40e/meson.build @@ -34,7 +34,8 @@ if arch_subdir == 'x86' elif cc.has_argument('-mavx2') i40e_avx2_lib = static_library('i40e_avx2_lib', 'i40e_rxtx_vec_avx2.c', - dependencies: static_rte_eal, + dependencies: [static_rte_ethdev, + static_rte_kvargs, static_rte_hash], c_args: '-mavx2') objs += i40e_avx2_lib.extract_objects('i40e_rxtx_vec_avx2.c') endif