blob: e5a2f555377fb0881f29301d81c11e485c57c697 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
cflags += ['-Wno-strict-aliasing']
allow_experimental_apis = true
subdir('base')
objs = [base_objs]
sources = files(
'iavf_ethdev.c',
'iavf_rxtx.c',
'iavf_vchnl.c',
)
if arch_subdir == 'x86'
dpdk_conf.set('RTE_LIBRTE_IAVF_INC_VECTOR', 1)
sources += files('iavf_rxtx_vec_sse.c')
endif
|