diff options
author | Benjamin Tissoires <bentiss@kernel.org> | 2023-10-05 17:55:34 +0200 |
---|---|---|
committer | Benjamin Tissoires <bentiss@kernel.org> | 2023-10-11 14:02:54 +0200 |
commit | 91939636cac4585e5c99a15c8b9023e0dcabb4e5 (patch) | |
tree | a8e150ee81bf984e44981ea54dc33a94567834b2 | |
parent | 89d024a7ba02b6b969f89ac057442b5d3bcb4272 (diff) |
selftests/hid: force using our compiled libbpf headers
Turns out that we were relying on the globally installed headers, not
the ones we freshly compiled.
Add a manual include in CFLAGS to sort this out.
Tested-by: Nick Desaulniers <ndesaulniers@google.com> # Build
Tested-by: Justin Stitt <justinstitt@google.com>
Link: https://lore.kernel.org/r/20230825-wip-selftests-v3-3-639963c54109@kernel.org
Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
-rw-r--r-- | tools/testing/selftests/hid/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/selftests/hid/Makefile b/tools/testing/selftests/hid/Makefile index a28054113f47..2b5ea18bde38 100644 --- a/tools/testing/selftests/hid/Makefile +++ b/tools/testing/selftests/hid/Makefile @@ -22,6 +22,8 @@ CXX ?= $(CROSS_COMPILE)g++ HOSTPKG_CONFIG := pkg-config CFLAGS += -g -O0 -rdynamic -Wall -Werror -I$(OUTPUT) +CFLAGS += -I$(OUTPUT)/tools/include + LDLIBS += -lelf -lz -lrt -lpthread # Silence some warnings when compiled with clang |