blob: 31739525ae815a9413ed12989ec30641befc7d79 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From e92f8932ef488de2a56db4299131ce6a4eb170bd Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 23 Mar 2016 06:30:09 +0000
4Subject: [PATCH] mips-linux-nat: Define _ABIO32 if not defined
5
6This helps building gdb on mips64 on musl, since
7musl does not provide sgidefs.h this define is
8only defined when GCC is using o32 ABI, in that
9case gcc emits it as built-in define and hence
10it works ok for mips32
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14Upstream-Status: Pending
15
16 gdb/mips-linux-nat.c | 5 +++++
17 1 file changed, 5 insertions(+)
18
19diff --git a/gdb/mips-linux-nat.c b/gdb/mips-linux-nat.c
20index fd5c705..753f29d 100644
21--- a/gdb/mips-linux-nat.c
22+++ b/gdb/mips-linux-nat.c
23@@ -46,6 +46,11 @@
24 #define PTRACE_GET_THREAD_AREA 25
25 #endif
26
27+/* musl does not define and relies on compiler built-in macros for it */
28+#ifndef _ABIO32
29+#define _ABIO32 1
30+#endif
31+
32 /* Assume that we have PTRACE_GETREGS et al. support. If we do not,
33 we'll clear this and use PTRACE_PEEKUSER instead. */
34 static int have_ptrace_regsets = 1;
35--
361.8.3.1
37