summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gdb/gdb
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2017-02-13 10:00:11 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-02-23 12:49:49 -0800
commit930b6d4ddbfadbc4e24a840529f5aca6c1a5a09d (patch)
tree90b483eb798968b75770fe176795655ac1837dbd /meta/recipes-devtools/gdb/gdb
parentf364cb7c4c26e1902e2ed80204972a52c82e31b9 (diff)
downloadpoky-930b6d4ddbfadbc4e24a840529f5aca6c1a5a09d.tar.gz
gdb: Upgrade to 7.12.1
Drop already applied patches (From OE-Core rev: 233641857bdc4071e5cb9a25206def880eb2754d) (From OE-Core rev: 3393364d1b365226d15042f20f0e6c56a439225b) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gdb/gdb')
-rw-r--r--meta/recipes-devtools/gdb/gdb/cb93dc7f262978bafe36397a41a56e409a302042.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/meta/recipes-devtools/gdb/gdb/cb93dc7f262978bafe36397a41a56e409a302042.patch b/meta/recipes-devtools/gdb/gdb/cb93dc7f262978bafe36397a41a56e409a302042.patch
deleted file mode 100644
index 3a42f0a770..0000000000
--- a/meta/recipes-devtools/gdb/gdb/cb93dc7f262978bafe36397a41a56e409a302042.patch
+++ /dev/null
@@ -1,43 +0,0 @@
1From cb93dc7f262978bafe36397a41a56e409a302042 Mon Sep 17 00:00:00 2001
2From: Yao Qi <yao.qi@linaro.org>
3Date: Mon, 24 Oct 2016 10:59:11 +0100
4Subject: [PATCH] [GDBserver] Fix conversion warning
5
6I got the following warning if I build GDBserver for aarch64_be-linux-gnu,
7
8git/gdb/gdbserver/linux-aarch64-low.c:1539:39: error: invalid conversion from 'void*' to 'uint32_t* {aka unsigned int*}' [-fpermissive]
9 uint32_t *le_buf = xmalloc (byte_len);
10 ^
11The patch is to fix the warning.
12
13gdb/gdbserver:
14
152016-10-24 Yao Qi <yao.qi@linaro.org>
16
17 PR server/20733
18 * linux-aarch64-low.c (append_insns): Cast the return value to
19 'uint32_t *'.
20
21Upstream-status: Backport
22Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
23
24---
25 gdb/gdbserver/linux-aarch64-low.c | 2 +-
26 1 file changed, 1 insertion(+), 1 deletion(-)
27
28diff --git a/gdb/gdbserver/linux-aarch64-low.c b/gdb/gdbserver/linux-aarch64-low.c
29index e54a8ba..ae80cdd 100644
30--- a/gdb/gdbserver/linux-aarch64-low.c
31+++ b/gdb/gdbserver/linux-aarch64-low.c
32@@ -1536,7 +1536,7 @@ append_insns (CORE_ADDR *to, size_t len, const uint32_t *buf)
33 {
34 size_t byte_len = len * sizeof (uint32_t);
35 #if (__BYTE_ORDER == __BIG_ENDIAN)
36- uint32_t *le_buf = xmalloc (byte_len);
37+ uint32_t *le_buf = (uint32_t *) xmalloc (byte_len);
38 size_t i;
39
40 for (i = 0; i < len; i++)
41--
422.9.3
43