The i40e neon vector implementation is not compiled with meson. Add the file to meson for Arm platform.
Cc: [email protected] Reported-by: David Marchand <[email protected]> Signed-off-by: Ruifeng Wang <[email protected]> Reviewed-by: Honnappa Nagarahalli <[email protected]> Reviewed-by: Phil Yang <[email protected]> --- drivers/net/i40e/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/i40e/meson.build b/drivers/net/i40e/meson.build index c452420ee..211d45d88 100644 --- a/drivers/net/i40e/meson.build +++ b/drivers/net/i40e/meson.build @@ -47,6 +47,9 @@ if arch_subdir == 'x86' elif arch_subdir == 'ppc' dpdk_conf.set('RTE_LIBRTE_I40E_INC_VECTOR', 1) sources += files('i40e_rxtx_vec_altivec.c') +elif arch_subdir == 'arm' + dpdk_conf.set('RTE_LIBRTE_I40E_INC_VECTOR', 1) + sources += files('i40e_rxtx_vec_neon.c') endif install_headers('rte_pmd_i40e.h') -- 2.17.1

