From: Pavel Fedin
Date: Fri, 14 Aug 2015 10:52:13 +0000 (+0300)
Subject: Avoid conflict with host definitions when cross-compiling
X-Git-Tag: v4.14-rc1~4734^2~6
X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c0561e0043fe870426b445890ab93204332ae39;p=platform%2Fkernel%2Flinux-rpi.git
Avoid conflict with host definitions when cross-compiling
Certain platforms (e. g. BSD-based ones) define some ELF constants
according to host. This patch fixes problems with cross-building
Linux kernel on these platforms (e. g. building ARM 32-bit version
on x86-64 host).
Signed-off-by: Pavel Fedin
Signed-off-by: Michal Marek
---
diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h
index 168b43d..6a5e151 100644
--- a/scripts/mod/modpost.h
+++ b/scripts/mod/modpost.h
@@ -11,6 +11,12 @@
#include "elfconfig.h"
+/* On BSD-alike OSes elf.h defines these according to host's word size */
+#undef ELF_ST_BIND
+#undef ELF_ST_TYPE
+#undef ELF_R_SYM
+#undef ELF_R_TYPE
+
#if KERNEL_ELFCLASS == ELFCLASS32
#define Elf_Ehdr Elf32_Ehdr