target/uml: fix memcpy export on x86_64 with gcc < 4.3 (closes: #6918)
authorNicolas Thill <nico@openwrt.org>
Sun, 2 May 2010 04:20:03 +0000 (04:20 +0000)
committerNicolas Thill <nico@openwrt.org>
Sun, 2 May 2010 04:20:03 +0000 (04:20 +0000)
SVN-Revision: 21293

target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch [new file with mode: 0644]
target/linux/uml/patches-2.6.32/003-fix_memcpy_export_on_x86_64.patch [new file with mode: 0644]

diff --git a/target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch b/target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch
new file mode 100644 (file)
index 0000000..7d2efe4
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/arch/um/os-Linux/user_syms.c
++++ b/arch/um/os-Linux/user_syms.c
+@@ -23,7 +23,7 @@ extern int printf(const char *, ...);
+ EXPORT_SYMBOL(strstr);
+ #endif
+-#ifndef __x86_64__
++#if !defined(__x86_64) || (__GNUC__ == 4 && __GNUC_MINOR__ < 3) || (__GNUC__ < 4)
+ extern void *memcpy(void *, const void *, size_t);
+ EXPORT_SYMBOL(memcpy);
+ #endif
diff --git a/target/linux/uml/patches-2.6.32/003-fix_memcpy_export_on_x86_64.patch b/target/linux/uml/patches-2.6.32/003-fix_memcpy_export_on_x86_64.patch
new file mode 100644 (file)
index 0000000..7d2efe4
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/arch/um/os-Linux/user_syms.c
++++ b/arch/um/os-Linux/user_syms.c
+@@ -23,7 +23,7 @@ extern int printf(const char *, ...);
+ EXPORT_SYMBOL(strstr);
+ #endif
+-#ifndef __x86_64__
++#if !defined(__x86_64) || (__GNUC__ == 4 && __GNUC_MINOR__ < 3) || (__GNUC__ < 4)
+ extern void *memcpy(void *, const void *, size_t);
+ EXPORT_SYMBOL(memcpy);
+ #endif