mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-27 18:14:46 +00:00
The incorrect path is causing the following error when trying to run net
kselftests:
In file included from bpf/nat6to4.c:43:
../../../lib/bpf/bpf_helpers.h:11:10: fatal error: 'bpf_helper_defs.h' file not found
^~~~~~~~~~~~~~~~~~~
1 error generated.
Fixes: cf67838c44 ("selftests net: fix bpf build error")
Signed-off-by: Coleman Dietsch <dietschc@csp.edu>
Link: https://lore.kernel.org/r/20220628174744.7908-1-dietschc@csp.edu
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
15 lines
329 B
Makefile
15 lines
329 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)
|