mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
bpf_helpers.h has been moved to tools/lib/bpf since 5.10, so add more
including path.
Fixes: edae34a3ed ("selftests net: add UDP GRO fraglist + bpf self-tests")
Reported-by: kernel test robot <oliver.sang@intel.com>
Signed-off-by: Lina Wang <lina.wang@mediatek.com>
Acked-by: Song Liu <songliubraving@fb.com>
Acked-by: Paolo Abeni <pabeni@redhat.com>
Link: https://lore.kernel.org/r/20220606064517.8175-1-lina.wang@mediatek.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
15 lines
326 B
Makefile
15 lines
326 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
CLANG ?= clang
|
|
CCINCLUDE += -I../../bpf
|
|
CCINCLUDE += -I../../../lib
|
|
CCINCLUDE += -I../../../../../usr/include/
|
|
|
|
TEST_CUSTOM_PROGS = $(OUTPUT)/bpf/nat6to4.o
|
|
all: $(TEST_CUSTOM_PROGS)
|
|
|
|
$(OUTPUT)/%.o: %.c
|
|
$(CLANG) -O2 -target bpf -c $< $(CCINCLUDE) -o $@
|
|
|
|
EXTRA_CLEAN := $(TEST_CUSTOM_PROGS)
|