acec04c4b2
Remove setting ALLOW_EXPERIMENTAL_API individually for each Makefile and meson.build. Instead, enable ALLOW_EXPERIMENTAL_API flag across app, lib and drivers. This changes reduces the clutter across the project while still maintaining the functionality of ALLOW_EXPERIMENTAL_API i.e. warning external applications about experimental API usage. Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com> Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com> Signed-off-by: David Marchand <david.marchand@redhat.com>
28 lines
607 B
Meson
28 lines
607 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
sources = files('bpf.c',
|
|
'bpf_exec.c',
|
|
'bpf_load.c',
|
|
'bpf_pkt.c',
|
|
'bpf_validate.c')
|
|
|
|
if arch_subdir == 'x86' and dpdk_conf.get('RTE_ARCH_64')
|
|
sources += files('bpf_jit_x86.c')
|
|
elif dpdk_conf.has('RTE_ARCH_ARM64')
|
|
sources += files('bpf_jit_arm64.c')
|
|
endif
|
|
|
|
install_headers('bpf_def.h',
|
|
'rte_bpf.h',
|
|
'rte_bpf_ethdev.h')
|
|
|
|
deps += ['mbuf', 'net', 'ethdev']
|
|
|
|
dep = dependency('libelf', required: false)
|
|
if dep.found()
|
|
dpdk_conf.set('RTE_LIBRTE_BPF_ELF', 1)
|
|
sources += files('bpf_load_elf.c')
|
|
ext_deps += dep
|
|
endif
|