From 98bc4decdeab1361bdc585c86591718fb08c8ffb Mon Sep 17 00:00:00 2001 From: Alexey Neyman Date: Sat, 2 Dec 2017 12:44:39 -0800 Subject: Run all patches through renumbering and update Signed-off-by: Alexey Neyman --- packages/gcc/5.5.0/0019-microblaze-uclibc.patch | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 packages/gcc/5.5.0/0019-microblaze-uclibc.patch (limited to 'packages/gcc/5.5.0/0019-microblaze-uclibc.patch') diff --git a/packages/gcc/5.5.0/0019-microblaze-uclibc.patch b/packages/gcc/5.5.0/0019-microblaze-uclibc.patch new file mode 100644 index 00000000..91d0aa48 --- /dev/null +++ b/packages/gcc/5.5.0/0019-microblaze-uclibc.patch @@ -0,0 +1,27 @@ +Add dynamic linker support for uClibc + +Signed-off-by: Waldemar Brodkorb + +--- + gcc/config/microblaze/linux.h | 10 +++++++++- + 1 file changed, 9 insertions(+), 1 deletion(-) + +--- a/gcc/config/microblaze/linux.h ++++ b/gcc/config/microblaze/linux.h +@@ -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 } -- cgit v1.2.3