2253524023
*** Changes in GDB 8.2 Support for the following target has been added: RiscV ELF (riscv*-*-elf) Support for following targets and native configurations has been removed: m88k running OpenBSD (m88*-*-openbsd*) SH-5/SH64 ELF (sh64-*-elf*) SH-5/SH64 (sh*) SH-5/SH64 running GNU/Linux (sh*-*-linux*) SH-5/SH64 running OpenBSD (sh*-*-openbsd*) Various Python API enhancements Aarch64/Linux enhancements: SVE support. Hardware watchpoints improvements for entities stored at unaligned addresses. New "c" response to disable the pager for the rest of the current command. C expressions can now use _Alignof, and C++ expressions can now use alignof. Improved flexibility for loading symbol files. The 'info proc' command nows works on running processes on FreeBSD systems as well as core files created on FreeBSD systems. A new --enable-codesign=CERT configure option to automatically codesign GDB after build (useful on MacOS X). Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
54 lines
1.1 KiB
Diff
54 lines
1.1 KiB
Diff
--- a/gdb/linux-nat.c
|
|
+++ b/gdb/linux-nat.c
|
|
@@ -17,6 +17,7 @@
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
+#include "stopcode.h"
|
|
#include "defs.h"
|
|
#include "inferior.h"
|
|
#include "infrun.h"
|
|
@@ -71,6 +72,10 @@
|
|
#define SPUFS_MAGIC 0x23c9b64e
|
|
#endif
|
|
|
|
+#ifndef __SIGRTMIN
|
|
+#define __SIGRTMIN SIGRTMIN
|
|
+#endif
|
|
+
|
|
/* This comment documents high-level logic of this file.
|
|
|
|
Waiting for events in sync mode
|
|
--- /dev/null
|
|
+++ b/gdb/stopcode.h
|
|
@@ -0,0 +1,4 @@
|
|
+#ifndef W_STOPCODE
|
|
+#define W_STOPCODE(sig) ((sig) << 8 | 0x7f)
|
|
+#endif
|
|
+
|
|
--- a/gdb/nat/ppc-linux.h
|
|
+++ b/gdb/nat/ppc-linux.h
|
|
@@ -18,7 +18,10 @@
|
|
#ifndef PPC_LINUX_H
|
|
#define PPC_LINUX_H 1
|
|
|
|
+#define pt_regs __pt_regs
|
|
#include <asm/ptrace.h>
|
|
+#undef pt_regs
|
|
+
|
|
#include <asm/cputable.h>
|
|
|
|
/* This sometimes isn't defined. */
|
|
--- a/gdb/gdbserver/linux-ppc-low.c
|
|
+++ b/gdb/gdbserver/linux-ppc-low.c
|
|
@@ -21,7 +21,9 @@
|
|
#include "linux-low.h"
|
|
|
|
#include <elf.h>
|
|
+#define pt_regs __pt_regs
|
|
#include <asm/ptrace.h>
|
|
+#undef pt_regs
|
|
|
|
#include "arch/ppc-linux-common.h"
|
|
#include "arch/ppc-linux-tdesc.h"
|