summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManjukumar Matha <manjukumar.harthikote-matha@xilinx.com>2016-07-11 15:39:09 -0700
committerNathan Rossi <nathan@nathanrossi.com>2016-07-17 03:37:53 +1000
commit843dca042ed56ef82f8e473309785b7465d1cc7e (patch)
tree44b501f55339925e2b75955bfe2451dd6a93bae8
parentbd27094e30181662b07eb16d86094590d9f954fd (diff)
downloadmeta-xilinx-843dca042ed56ef82f8e473309785b7465d1cc7e.tar.gz
Remove this patch as it is no longer required
This patch is applied upstream, and no longer required Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
-rw-r--r--recipes-microblaze/gcc/files/microblaze-musl-support.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/recipes-microblaze/gcc/files/microblaze-musl-support.patch b/recipes-microblaze/gcc/files/microblaze-musl-support.patch
deleted file mode 100644
index 08370c15..00000000
--- a/recipes-microblaze/gcc/files/microblaze-musl-support.patch
+++ /dev/null
@@ -1,44 +0,0 @@
1From: nsz <nsz@138bc75d-0d04-0410-961f-82ee72b054a4>
2Date: Thu, 15 Oct 2015 19:12:15 +0000
3Subject: [PATCH] microblaze musl support
4
5 * config/microblaze/linux.h (MUSL_DYNAMIC_LINKER): Define.
6 (DYNAMIC_LINKER): Renamed to ...
7 (GLIBC_DYNAMIC_LINKER): This.
8 (SUBTARGET_EXTRA_SPECS): Use GNU_USER_DYNAMIC_LINKER.
9
10Upstream-Status: Backport
11---
12 gcc/config/microblaze/linux.h | 14 ++++++++++++--
13 1 file changed, 12 insertions(+), 2 deletions(-)
14
15diff --git a/gcc/config/microblaze/linux.h b/gcc/config/microblaze/linux.h
16index 655a70f..a8a3f3e 100644
17--- a/gcc/config/microblaze/linux.h
18+++ b/gcc/config/microblaze/linux.h
19@@ -28,10 +28,20 @@
20 #undef TLS_NEEDS_GOT
21 #define TLS_NEEDS_GOT 1
22
23-#define DYNAMIC_LINKER "/lib/ld.so.1"
24+#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
25+
26+#if TARGET_BIG_ENDIAN_DEFAULT == 0 /* LE */
27+#define MUSL_DYNAMIC_LINKER_E "%{mbig-endian:;:el}"
28+#else
29+#define MUSL_DYNAMIC_LINKER_E "%{mlittle-endian:el}"
30+#endif
31+
32+#undef MUSL_DYNAMIC_LINKER
33+#define MUSL_DYNAMIC_LINKER "/lib/ld-musl-microblaze" MUSL_DYNAMIC_LINKER_E ".so.1"
34+
35 #undef SUBTARGET_EXTRA_SPECS
36 #define SUBTARGET_EXTRA_SPECS \
37- { "dynamic_linker", DYNAMIC_LINKER }
38+ { "dynamic_linker", GNU_USER_DYNAMIC_LINKER }
39
40 #undef LINK_SPEC
41 #define LINK_SPEC "%{shared:-shared} \
42--
432.6.4
44