This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH 2/2] Add aarch64-linux in supports_get_siginfo_type
- From: Yao Qi <qiyaoltc at gmail dot com>
- To: gdb-patches at sourceware dot org
- Date: Mon, 22 Jun 2015 12:03:37 +0100
- Subject: [PATCH 2/2] Add aarch64-linux in supports_get_siginfo_type
- Authentication-results: sourceware.org; auth=none
- References: <1434971017-22494-1-git-send-email-yao dot qi at linaro dot org>
gdbarch method get_siginfo_type is implemented on aaarch64-linux, so
supports_get_siginfo_type should return 1 on aaarch64-linux.
gdb/testsuite:
2015-06-22 Yao Qi <yao.qi@linaro.org>
* lib/gdb.exp (supports_get_siginfo_type): Add aarch64-linux.
---
gdb/testsuite/lib/gdb.exp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index d3ed56f..47221cb 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -2002,7 +2002,8 @@ gdb_caching_proc support_complex_tests {
proc supports_get_siginfo_type {} {
if { [istarget "i?86-*-linux*"]
|| [istarget "x86_64-*-linux*"]
- || [istarget "arm*-*-linux*"] } {
+ || [istarget "arm*-*-linux*"]
+ || [istarget "aarch64*-*-linux*"] } {
return 1
} else {
return 0
--
1.9.1