summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gdb/gdb/0003-mips-linux-nat-Define-_ABIO32-if-not-defined.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/gdb/gdb/0003-mips-linux-nat-Define-_ABIO32-if-not-defined.patch')
-rw-r--r--meta/recipes-devtools/gdb/gdb/0003-mips-linux-nat-Define-_ABIO32-if-not-defined.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gdb/gdb/0003-mips-linux-nat-Define-_ABIO32-if-not-defined.patch b/meta/recipes-devtools/gdb/gdb/0003-mips-linux-nat-Define-_ABIO32-if-not-defined.patch
new file mode 100644
index 0000000000..bac793964a
--- /dev/null
+++ b/meta/recipes-devtools/gdb/gdb/0003-mips-linux-nat-Define-_ABIO32-if-not-defined.patch
@@ -0,0 +1,37 @@
1From 88e67caed662d8344c8db56176c9f1221e6cd2a2 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 03/10] 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 bfe9fcb..449b43a 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--
362.8.2
37