8cfbda109f
This is a minor corrective release over GDB 11.1, fixing the following issues: PR sim/28302 (gdb fails to build with glibc 2.34) PR build/28318 (std::thread support configure check does not use CXX_DIALECT) PR gdb/28405 (arm-none-eabi: internal-error: ptid_t remote_target::select_thread_for_ambiguous_stop_reply(const target_waitstatus*): Assertion `first_resumed_thread != nullptr' failed) PR tui/28483 ([gdb/tui] breakpoint creation not displayed) PR build/28555 (uclibc compile failure since commit 4655f8509fd44e6efabefa373650d9982ff37fd6) PR rust/28637 (Rust characters will be encoded using DW_ATE_UTF) PR gdb/28758 (GDB 11 doesn't work correctly on binaries with a SHT_RELR (.relr.dyn) section) PR gdb/28785 (Support SHT_RELR (.relr.dyn) section) Drop patch 0006-sim-filter-out-SIGSTKSZ-PR-sim-28302.patch, which was merged upstream as commit 17d6f2152b583cdc7defafa7813b727a304bac5b. Drop patch 0008-Fix-build-on-rhES5.patch, which was merged upstream as commit df9ebc472a162306dee8ba6e02b99963c2babb7c? Drop patch 0009-gdbserver-aarch64-support.patch, which was merged upstream as commit eb79b2318066cafb75ffdce310e3bbd44f7c79e3. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
41 lines
1.1 KiB
Diff
41 lines
1.1 KiB
Diff
From 65acc8800dba7e10da882871d4648241805c47ce Mon Sep 17 00:00:00 2001
|
|
From: Andre McCurdy <amccurdy@gmail.com>
|
|
Date: Sat, 30 Apr 2016 15:29:06 -0700
|
|
Subject: [PATCH] use <asm/sgidefs.h>
|
|
|
|
Build fix for MIPS with musl libc
|
|
|
|
The MIPS specific header <sgidefs.h> is provided by glibc and uclibc
|
|
but not by musl. Regardless of the libc, the kernel headers provide
|
|
<asm/sgidefs.h> which provides the same definitions, so use that
|
|
instead.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
[Vincent:
|
|
Taken from: https://sourceware.org/bugzilla/show_bug.cgi?id=21070]
|
|
|
|
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
|
---
|
|
gdb/mips-linux-nat.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/gdb/mips-linux-nat.c b/gdb/mips-linux-nat.c
|
|
index 38ff461a35b..b6cf194b2bf 100644
|
|
--- a/gdb/mips-linux-nat.c
|
|
+++ b/gdb/mips-linux-nat.c
|
|
@@ -31,7 +31,7 @@
|
|
#include "gdb_proc_service.h"
|
|
#include "gregset.h"
|
|
|
|
-#include <sgidefs.h>
|
|
+#include <asm/sgidefs.h>
|
|
#include "nat/gdb_ptrace.h"
|
|
#include <asm/ptrace.h>
|
|
#include "inf-ptrace.h"
|
|
--
|
|
2.29.2
|
|
|