9bd75b508e
Weak functions don't work well with static libraries and require the use of "whole-archive" flag to ensure that the correct function is used when linking. Since the weak function is only used as a placeholder within this library alone, we can replace it with a non-weak version protected using preprocessor ifdefs. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com> Tested-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
27 lines
572 B
Meson
27 lines
572 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
allow_experimental_apis = true
|
|
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')
|
|
endif
|
|
|
|
install_headers = files('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
|