net/avf: support meson build

Signed-off-by: Luca Boccassi <bluca@debian.org>
Reviewed-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
Luca Boccassi 2018-09-19 11:04:17 +01:00 committed by Ferruh Yigit
parent bfd38e4d70
commit bfabd06000
3 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
sources = [
'avf_adminq.c',
'avf_common.c',
]
error_cflags = ['-Wno-pointer-to-int-cast']
c_args = cflags
foreach flag: error_cflags
if cc.has_argument(flag)
c_args += flag
endif
endforeach
base_lib = static_library('avf_base', sources,
dependencies: static_rte_eal,
c_args: c_args)
base_objs = base_lib.extract_all_objects()

View File

@ -0,0 +1,18 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
cflags += ['-Wno-strict-aliasing']
subdir('base')
objs = [base_objs]
sources = files(
'avf_ethdev.c',
'avf_rxtx.c',
'avf_vchnl.c',
)
if arch_subdir == 'x86'
dpdk_conf.set('RTE_LIBRTE_AVF_INC_VECTOR', 1)
sources += files('avf_rxtx_vec_sse.c')
endif

View File

@ -3,6 +3,7 @@
drivers = ['af_packet',
'ark',
'avf',
'avp',
'axgbe', 'bonding',
'bnx2x',