Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a5539f6 authored by David S. Miller's avatar David S. Miller
Browse files

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: default avatarDavid S. Miller <davem@davemloft.net>
parent 228b0324
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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 $@
+6 −0
Original line number Diff line number Diff line
#ifndef _UAPI_LINUX_TYPES_H
#define _UAPI_LINUX_TYPES_H

#include <asm-generic/int-ll64.h>

#endif /* _UAPI_LINUX_TYPES_H */