1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Intel Corporation
4 allow_experimental_apis = true
5 sources = files('bpf.c',
10 if arch_subdir == 'x86'
11 sources += files('bpf_jit_x86.c')
14 install_headers = files('bpf_def.h',
17 deps += ['mbuf', 'net']
19 dep = cc.find_library('elf', required: false)
20 if dep.found() == true and cc.has_header('libelf.h', dependencies: dep)
21 sources += files('bpf_load_elf.c')