summaryrefslogtreecommitdiff
path: root/packages/gcc/5.5.0/892-microblaze-uclibc.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-10-23 20:02:01 (GMT)
committerAlexey Neyman <stilor@att.net>2017-10-23 20:02:01 (GMT)
commit8e5de7fcbf123c52fe74666396cebbd21a9d34aa (patch)
tree021618d4d519d6ab2cc5e2909fd2a530397b2c44 /packages/gcc/5.5.0/892-microblaze-uclibc.patch
parent6a8eb24df62ed45e175c10212b529134d3b7405e (diff)
Upgrades: gcc 5.5, gdb 8.0.1, musl 1.1.17, Linux
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/gcc/5.5.0/892-microblaze-uclibc.patch')
-rw-r--r--packages/gcc/5.5.0/892-microblaze-uclibc.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/gcc/5.5.0/892-microblaze-uclibc.patch b/packages/gcc/5.5.0/892-microblaze-uclibc.patch
new file mode 100644
index 0000000..a8eb5a6
--- /dev/null
+++ b/packages/gcc/5.5.0/892-microblaze-uclibc.patch
@@ -0,0 +1,24 @@
+Add dynamic linker support for uClibc
+
+Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
+
+diff -Nur gcc-5.3.0.orig/gcc/config/microblaze/linux.h gcc-5.3.0/gcc/config/microblaze/linux.h
+--- gcc-5.3.0.orig/gcc/config/microblaze/linux.h 2015-05-28 16:08:19.000000000 +0200
++++ gcc-5.3.0/gcc/config/microblaze/linux.h 2016-05-13 09:21:01.579262885 +0200
+@@ -28,7 +28,15 @@
+ #undef TLS_NEEDS_GOT
+ #define TLS_NEEDS_GOT 1
+
+-#define DYNAMIC_LINKER "/lib/ld.so.1"
++#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
++#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
++
++#if DEFAULT_LIBC == LIBC_UCLIBC
++#define DYNAMIC_LINKER UCLIBC_DYNAMIC_LINKER
++#else
++#define DYNAMIC_LINKER GLIBC_DYNAMIC_LINKER
++#endif
++
+ #undef SUBTARGET_EXTRA_SPECS
+ #define SUBTARGET_EXTRA_SPECS \
+ { "dynamic_linker", DYNAMIC_LINKER }