bpf: Provide a linux/types.h override for bpf selftests.

We do not want to use the architecture's type.h header when
building BPF programs which are always 64-bit.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2017-05-11 12:00:50 -07:00
parent 228b0324fe
commit 0a5539f661
2 changed files with 8 additions and 1 deletions

View file

@ -35,6 +35,7 @@ $(BPFOBJ): force
CLANG ?= clang
%.o: %.c
$(CLANG) -I. -I../../../include/uapi -I../../../../samples/bpf/ \
$(CLANG) -I. -I./include/uapi -I../../../include/uapi \
-I../../../../samples/bpf/ \
-Wno-compare-distinct-pointer-types \
-O2 -target bpf -c $< -o $@

View file

@ -0,0 +1,6 @@
#ifndef _UAPI_LINUX_TYPES_H
#define _UAPI_LINUX_TYPES_H
#include <asm-generic/int-ll64.h>
#endif /* _UAPI_LINUX_TYPES_H */