summaryrefslogtreecommitdiffstats
path: root/tools/mkimage
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-12-01 11:07:30 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-12-01 11:07:30 +0000
commitc3a7057e43a20085b4b71ce77f83306ec5334854 (patch)
treecb794eea3249084d0ba68f13f072e4ae0f30bd79 /tools/mkimage
parente8068f0b1b4e53559ae0c58910b8905bee9b61ab (diff)
downloadmaster-31e0f0ae-c3a7057e43a20085b4b71ce77f83306ec5334854.tar.gz
master-31e0f0ae-c3a7057e43a20085b4b71ce77f83306ec5334854.tar.bz2
master-31e0f0ae-c3a7057e43a20085b4b71ce77f83306ec5334854.zip
mkimage: remove check for miscompiled __weak
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43458
Diffstat (limited to 'tools/mkimage')
-rw-r--r--tools/mkimage/patches/080-remove_compiler_check.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/mkimage/patches/080-remove_compiler_check.patch b/tools/mkimage/patches/080-remove_compiler_check.patch
new file mode 100644
index 0000000000..3e71ad5b07
--- /dev/null
+++ b/tools/mkimage/patches/080-remove_compiler_check.patch
@@ -0,0 +1,16 @@
+--- a/include/linux/compiler-gcc4.h
++++ b/include/linux/compiler-gcc4.h
+@@ -2,13 +2,6 @@
+ #error "Please don't include <linux/compiler-gcc4.h> directly, include <linux/compiler.h> instead."
+ #endif
+
+-/* GCC 4.1.[01] miscompiles __weak */
+-#ifdef __KERNEL__
+-# if GCC_VERSION >= 40100 && GCC_VERSION <= 40101
+-# error Your version of gcc miscompiles the __weak directive
+-# endif
+-#endif
+-
+ #define __used __attribute__((__used__))
+ #define __must_check __attribute__((warn_unused_result))
+ #define __compiler_offsetof(a,b) __builtin_offsetof(a,b)