f-stack/dpdk/lib/librte_bpf/meson.build

29 lines
638 B
Meson
Raw Normal View History

2019-06-25 11:12:58 +00:00
# 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')
2019-11-23 08:13:38 +00:00
if arch_subdir == 'x86' and dpdk_conf.get('RTE_ARCH_64')
2019-06-25 11:12:58 +00:00
sources += files('bpf_jit_x86.c')
2020-06-18 16:55:50 +00:00
elif dpdk_conf.has('RTE_ARCH_ARM64')
sources += files('bpf_jit_arm64.c')
2019-06-25 11:12:58 +00:00
endif
2020-06-18 16:55:50 +00:00
install_headers('bpf_def.h',
2019-06-25 11:12:58 +00:00
'rte_bpf.h',
'rte_bpf_ethdev.h')
deps += ['mbuf', 'net', 'ethdev']
2020-06-18 16:55:50 +00:00
dep = dependency('libelf', required: false)
if dep.found()
dpdk_conf.set('RTE_LIBRTE_BPF_ELF', 1)
2019-06-25 11:12:58 +00:00
sources += files('bpf_load_elf.c')
ext_deps += dep
endif