summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaewon Lee <jaewon.lee@xilinx.com>2019-04-29 11:37:35 -0700
committerManjukumar Matha <manjukumar.harthikote-matha@xilinx.com>2019-06-28 16:32:42 -0700
commitdc78605e615cb5362f0c647d4151c32078ec65fe (patch)
tree56acd461d8df9d53b9ab60f3e1490df367d63837
parent50f5a1e2109bba01d4320d039cbb9220c683e7b9 (diff)
downloadmeta-xilinx-dc78605e615cb5362f0c647d4151c32078ec65fe.tar.gz
gcc: Removing already upstreamed patch
Removing patch 0056-fix-the-lto-wrapper-issue-on-windows.patch Signed-off-by: Jaewon Lee <jaewon.lee@xilinx.com> Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com> Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
-rw-r--r--meta-xilinx-bsp/recipes-microblaze/gcc/gcc-8/0056-fix-the-lto-wrapper-issue-on-windows.patch36
-rw-r--r--meta-xilinx-bsp/recipes-microblaze/gcc/gcc-source_8.%.bbappend1
2 files changed, 0 insertions, 37 deletions
diff --git a/meta-xilinx-bsp/recipes-microblaze/gcc/gcc-8/0056-fix-the-lto-wrapper-issue-on-windows.patch b/meta-xilinx-bsp/recipes-microblaze/gcc/gcc-8/0056-fix-the-lto-wrapper-issue-on-windows.patch
deleted file mode 100644
index ff524770..00000000
--- a/meta-xilinx-bsp/recipes-microblaze/gcc/gcc-8/0056-fix-the-lto-wrapper-issue-on-windows.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1From f30b99b5b8d3f2a8d8e4973cd155a4b9f1849039 Mon Sep 17 00:00:00 2001
2From: Nagaraju <nmekala@xilinx.com>
3Date: Thu, 14 Mar 2019 18:08:06 +0530
4Subject: [PATCH 56/57] fix the lto-wrapper issue on windows
5
6---
7 libiberty/simple-object.c | 6 +++++-
8 1 file changed, 5 insertions(+), 1 deletion(-)
9
10diff --git a/libiberty/simple-object.c b/libiberty/simple-object.c
11index 42aa6ac..d2465c6 100644
12--- a/libiberty/simple-object.c
13+++ b/libiberty/simple-object.c
14@@ -44,6 +44,10 @@ Boston, MA 02110-1301, USA. */
15 #define SEEK_SET 0
16 #endif
17
18+#ifndef O_BINARY
19+#define O_BINARY 0
20+#endif
21+
22 #include "simple-object-common.h"
23
24 /* The known object file formats. */
25@@ -326,7 +330,7 @@ simple_object_copy_lto_debug_sections (simple_object_read *sobj,
26 return errmsg;
27 }
28
29- outfd = creat (dest, 00777);
30+ outfd = open (dest, O_CREAT|O_WRONLY|O_TRUNC|O_BINARY, 00777);
31 if (outfd == -1)
32 {
33 *err = errno;
34--
352.7.4
36
diff --git a/meta-xilinx-bsp/recipes-microblaze/gcc/gcc-source_8.%.bbappend b/meta-xilinx-bsp/recipes-microblaze/gcc/gcc-source_8.%.bbappend
index a0b533ef..38e95ed3 100644
--- a/meta-xilinx-bsp/recipes-microblaze/gcc/gcc-source_8.%.bbappend
+++ b/meta-xilinx-bsp/recipes-microblaze/gcc/gcc-source_8.%.bbappend
@@ -56,7 +56,6 @@ file://0001-LOCAL-Testsuite-builtins-tests-require-fpic.patch \
56 file://0053-Fixed-the-missing-stack-adjustment-in-prologue-of-mo.patch \ 56 file://0053-Fixed-the-missing-stack-adjustment-in-prologue-of-mo.patch \
57 file://0054-Patch-Microblaze-corrected-SPN-for-dlong-instruction.patch \ 57 file://0054-Patch-Microblaze-corrected-SPN-for-dlong-instruction.patch \
58 file://0055-fixing-the-long-long-long-mingw-toolchain-issue.patch \ 58 file://0055-fixing-the-long-long-long-mingw-toolchain-issue.patch \
59 file://0056-fix-the-lto-wrapper-issue-on-windows.patch \
60 file://0057-Fix-the-MB-64-bug-of-handling-QI-objects.patch \ 59 file://0057-Fix-the-MB-64-bug-of-handling-QI-objects.patch \
61 file://0058-Patch-Microblaze-We-will-check-the-possibility-of-pe.patch \ 60 file://0058-Patch-Microblaze-We-will-check-the-possibility-of-pe.patch \
62 file://0059-Reverting-the-patch-as-kernel-boot-is-not-working-wi.patch \ 61 file://0059-Reverting-the-patch-as-kernel-boot-is-not-working-wi.patch \