]> git.proxmox.com Git - systemd.git/blob - src/core/bpf/socket_bind/meson.build
New upstream version 249~rc1
[systemd.git] / src / core / bpf / socket_bind / meson.build
1 # SPDX-License-Identifier: LGPL-2.1+
2
3 if conf.get('BPF_FRAMEWORK') == 1
4 socket_bind_skel_h = custom_target(
5 'socket-bind.skel.h',
6 input : 'socket-bind.bpf.c',
7 output : 'socket-bind.skel.h',
8 command : [build_bpf_skel_py,
9 '--clang_exec', clang.path(),
10 '--llvm_strip_exec', llvm_strip.path(),
11 '--bpftool_exec', bpftool.path(),
12 '--arch', host_machine.cpu_family(),
13 '@INPUT@', '@OUTPUT@'])
14 endif