6 lines
127 B
Bash
6 lines
127 B
Bash
|
|
INCDIR=/usr/include
|
||
|
|
clang -O2 -g -target bpf \
|
||
|
|
-D__TARGET_ARCH_arm64 \
|
||
|
|
-I"$INCDIR" \
|
||
|
|
-c sendrecv.bpf.c -o sendrecv.bpf.o
|