blob: cb5843816c054c5053da4ce483820b1c4eb78c17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Useful commands:
# make filter
# ip link show $eth
# sudo ip link set dev $eth xdp off
# sudo ip link set dev $eth xdp obj ./bpf-kernel.o
#
# Built using LLVM/CLANG 14.
#
# When updating check using `llvm-objdump -h bpf-kernel.o` if .BTF and .BTF.ext
# sections are present.
EXTRA_DIST = bpf-kernel-obj.c bpf-kernel.c
.PHONY: filter
filter:
rm -f bpf-kernel.o bpf-kernel-obj.c
clang -target bpf -Wall -O2 -g -DNDEBUG -c -o bpf-kernel.o -I/usr/include/x86_64-linux-gnu -include ../../config.h bpf-kernel.c
llvm-strip -S bpf-kernel.o
xxd -i bpf-kernel.o > bpf-kernel-obj.c
|