common/sfc_efx/base: add NIC magic check on BAR lookup
[dpdk.git] / lib / librte_acl / meson.build
index 2207dba..b31a3f7 100644 (file)
@@ -1,12 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-version = 2
 sources = files('acl_bld.c', 'acl_gen.c', 'acl_run_scalar.c',
                'rte_acl.c', 'tb_mem.c')
 headers = files('rte_acl.h', 'rte_acl_osdep.h')
 
-if arch_subdir == 'x86'
+if dpdk_conf.has('RTE_ARCH_X86')
        sources += files('acl_run_sse.c')
 
        # compile AVX2 version if either:
@@ -16,7 +15,7 @@ if arch_subdir == 'x86'
        # in former case, just add avx2 C file to files list
        # in latter case, compile c file to static lib, using correct compiler
        # flags, and then have the .o file from static lib linked into main lib.
-       if dpdk_conf.has('RTE_MACHINE_CPUFLAG_AVX2')
+       if cc.get_define('__AVX2__', args: machine_args) != ''
                sources += files('acl_run_avx2.c')
                cflags += '-DCC_AVX2_SUPPORT'
        elif cc.has_argument('-mavx2')
@@ -28,4 +27,9 @@ if arch_subdir == 'x86'
                cflags += '-DCC_AVX2_SUPPORT'
        endif
 
+elif dpdk_conf.has('RTE_ARCH_ARM') or dpdk_conf.has('RTE_ARCH_ARM64')
+       cflags += '-flax-vector-conversions'
+       sources += files('acl_run_neon.c')
+elif dpdk_conf.has('RTE_ARCH_PPC_64')
+       sources += files('acl_run_altivec.c')
 endif