2018-09-19 10:04:17 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
|
|
|
|
|
|
|
|
cflags += ['-Wno-strict-aliasing']
|
|
|
|
|
2018-10-10 14:12:20 +00:00
|
|
|
allow_experimental_apis = true
|
|
|
|
|
2018-09-19 10:04:17 +00:00
|
|
|
subdir('base')
|
|
|
|
objs = [base_objs]
|
|
|
|
|
|
|
|
sources = files(
|
2019-02-25 17:18:51 +00:00
|
|
|
'iavf_ethdev.c',
|
|
|
|
'iavf_rxtx.c',
|
|
|
|
'iavf_vchnl.c',
|
2018-09-19 10:04:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if arch_subdir == 'x86'
|
2019-02-25 17:18:51 +00:00
|
|
|
sources += files('iavf_rxtx_vec_sse.c')
|
2019-10-16 08:14:09 +00:00
|
|
|
|
|
|
|
# compile AVX2 version if either:
|
|
|
|
# a. we have AVX supported in minimum instruction set baseline
|
|
|
|
# b. it's not minimum instruction set, but supported by compiler
|
|
|
|
if dpdk_conf.has('RTE_MACHINE_CPUFLAG_AVX2')
|
|
|
|
cflags += ['-DCC_AVX2_SUPPORT']
|
|
|
|
sources += files('iavf_rxtx_vec_avx2.c')
|
|
|
|
elif cc.has_argument('-mavx2')
|
|
|
|
cflags += ['-DCC_AVX2_SUPPORT']
|
|
|
|
iavf_avx2_lib = static_library('iavf_avx2_lib',
|
|
|
|
'iavf_rxtx_vec_avx2.c',
|
|
|
|
dependencies: [static_rte_ethdev,
|
|
|
|
static_rte_kvargs, static_rte_hash],
|
|
|
|
include_directories: includes,
|
|
|
|
c_args: [cflags, '-mavx2'])
|
|
|
|
objs += iavf_avx2_lib.extract_objects('iavf_rxtx_vec_avx2.c')
|
|
|
|
endif
|
2018-09-19 10:04:17 +00:00
|
|
|
endif
|