aboutsummaryrefslogtreecommitdiffstats
path: root/tools/include
diff options
context:
space:
mode:
authorKevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>2020-03-13 17:56:40 +0000
committerKevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>2020-03-14 13:20:06 +0000
commit0a06fcf608ddf1f5db389decf266283392344784 (patch)
treec2672e54b7a4fa5389ab41c7343561ccf05f7ce0 /tools/include
parent32726846c85985fbc320d123a7b26b32124cd47a (diff)
downloadupstream-0a06fcf608ddf1f5db389decf266283392344784.tar.gz
upstream-0a06fcf608ddf1f5db389decf266283392344784.tar.bz2
upstream-0a06fcf608ddf1f5db389decf266283392344784.zip
build: fix kernel 5.4 on macos
As part of the kernel build process there are utilities built to run on the host system that expect linux kernel headers to be available. Unfortunately macos/darwin doesn't have these headers. vdso2c requires types.h so provide a minimal stub to satisfy it. Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Diffstat (limited to 'tools/include')
-rw-r--r--tools/include/asm/types.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/include/asm/types.h b/tools/include/asm/types.h
new file mode 100644
index 0000000000..2c91232619
--- /dev/null
+++ b/tools/include/asm/types.h
@@ -0,0 +1,24 @@
+/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
+/*
+ * asm-generic/int-ll64.h
+ *
+ * Integer declarations for architectures which use "long long"
+ * for 64-bit types.
+ */
+
+#ifndef _ASM_GENERIC_INT_LL64_H
+#define _ASM_GENERIC_INT_LL64_H
+
+typedef __signed__ char __s8;
+
+typedef __signed__ short __s16;
+
+typedef __signed__ int __s32;
+
+#ifdef __GNUC__
+__extension__ typedef __signed__ long long __s64;
+#else
+typedef __signed__ long long __s64;
+#endif
+
+#endif /* _ASM_GENERIC_INT_LL64_H */