diff options
author | Yao Qi <yao.qi@linaro.org> | 2015-07-27 16:15:48 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2015-07-27 16:15:48 +0100 |
commit | 50904b25ecf09f14c9406157b7f51255b21f54c0 (patch) | |
tree | ed7f220fc98755519d73f5c33d841d8b7a2fecf4 | |
parent | 3a60804fbca012d751d21fde17592df0eee8d82a (diff) | |
download | gdb-50904b25ecf09f14c9406157b7f51255b21f54c0.zip gdb-50904b25ecf09f14c9406157b7f51255b21f54c0.tar.gz gdb-50904b25ecf09f14c9406157b7f51255b21f54c0.tar.bz2 |
[gdbserver] Don't set srv_linux_usrregs for aarch64*-*-linux*
We don't use PTRACE_PEEKUSR/PTRACE_POKEUSR on aarch64-linux, so don't
need to set srv_linux_usrregs. This patch removes that line.
gdb/gdbserver:
2015-07-27 Yao Qi <yao.qi@linaro.org>
* configure.srv (case aarch64*-*-linux*): Don't set
srv_linux_usrregs.
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbserver/configure.srv | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 40826ed..5b4236a 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2015-07-27 Yao Qi <yao.qi@linaro.org> + + * configure.srv (case aarch64*-*-linux*): Don't set + srv_linux_usrregs. + 2015-07-24 Pedro Alves <palves@redhat.c: Likewise.om> * linux-aarch64-low.c: Include nat/gdb_ptrace.h instead of diff --git a/gdb/gdbserver/configure.srv b/gdb/gdbserver/configure.srv index 2dc954b..9a04aac 100644 --- a/gdb/gdbserver/configure.srv +++ b/gdb/gdbserver/configure.srv @@ -54,7 +54,6 @@ case "${target}" in srv_xmlfiles="aarch64.xml" srv_xmlfiles="${srv_xmlfiles} aarch64-core.xml" srv_xmlfiles="${srv_xmlfiles} aarch64-fpu.xml" - srv_linux_usrregs=yes srv_linux_regsets=yes srv_linux_thread_db=yes ;; |