aboutsummaryrefslogtreecommitdiffstats
path: root/lib/librte_bpf/meson.build
blob: bc0cd78f90635b5101778703b6bc2980cbca614a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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 cc.sizeof('void *') == 8
	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 = cc.find_library('elf', required: false)
if dep.found() == true and cc.has_header('libelf.h', dependencies: dep)
	sources += files('bpf_load_elf.c')
	ext_deps += dep
endif