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:
parent
bfd38e4d70
commit
bfabd06000
20
drivers/net/avf/base/meson.build
Normal file
20
drivers/net/avf/base/meson.build
Normal 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()
|
18
drivers/net/avf/meson.build
Normal file
18
drivers/net/avf/meson.build
Normal 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
|
@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
drivers = ['af_packet',
|
drivers = ['af_packet',
|
||||||
'ark',
|
'ark',
|
||||||
|
'avf',
|
||||||
'avp',
|
'avp',
|
||||||
'axgbe', 'bonding',
|
'axgbe', 'bonding',
|
||||||
'bnx2x',
|
'bnx2x',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user