From 41b059a20215284e8aa618d2ce1e2a803e64c1d0 Mon Sep 17 00:00:00 2001 From: Reshma Pattan Date: Tue, 14 Jan 2020 11:29:45 +0000 Subject: [PATCH] net/ixgbe: enable NEON in meson Add missing arm vector build support to meson.build. Signed-off-by: Reshma Pattan Acked-by: Xiaolong Ye --- drivers/net/ixgbe/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/ixgbe/meson.build b/drivers/net/ixgbe/meson.build index 6667af6348..06cf42a4aa 100644 --- a/drivers/net/ixgbe/meson.build +++ b/drivers/net/ixgbe/meson.build @@ -26,6 +26,8 @@ deps += ['hash', 'security'] if arch_subdir == 'x86' sources += files('ixgbe_rxtx_vec_sse.c') +elif arch_subdir == 'arm' + sources += files('ixgbe_rxtx_vec_neon.c') endif includes += include_directories('base') -- 2.20.1