diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-01-07 11:42:53 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-01-07 11:42:53 +0000 |
commit | e6352c8f639e960607aab87c831738a61d3bd8c6 (patch) | |
tree | a875c581b171509d09819ce2b370414b1db6f198 | |
parent | 50681a27052bb304959dd6beb1bd38bc3c27fa23 (diff) | |
download | gdb-e6352c8f639e960607aab87c831738a61d3bd8c6.zip gdb-e6352c8f639e960607aab87c831738a61d3bd8c6.tar.gz gdb-e6352c8f639e960607aab87c831738a61d3bd8c6.tar.bz2 |
Make x86-lynx GDBserver pass XML register map to GDB.
This is not strictly needed, since both GDB and GDBserver seem
to agree on the register numbering without this. But this allows
us to make sure that this is always going to be the case.
gdb/gdbserver/ChangeLog:
* configure.srv (i[34567]86-*-lynxos*): Set srv_xmlfiles.
-rw-r--r-- | gdb/gdbserver/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdbserver/configure.srv | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 836f0df..49aa286 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,9 @@ 2013-01-07 Joel Brobecker <brobecker@adacore.com> + * configure.srv (i[34567]86-*-lynxos*): Set srv_xmlfiles. + +2013-01-07 Joel Brobecker <brobecker@adacore.com> + * configure.srv (powerpc-*-lynxos*): Set srv_xmlfiles. 2013-01-07 Joel Brobecker <brobecker@adacore.com> diff --git a/gdb/gdbserver/configure.srv b/gdb/gdbserver/configure.srv index cb7cfee..cdb5487 100644 --- a/gdb/gdbserver/configure.srv +++ b/gdb/gdbserver/configure.srv @@ -105,6 +105,9 @@ case "${target}" in ;; i[34567]86-*-lynxos*) srv_regobj="i386.o" srv_tgtobj="lynx-low.o lynx-i386-low.o" + srv_xmlfiles="i386/i386.xml" + srv_xmlfiles="${srv_xmlfiles} i386/32bit-core.xml" + srv_xmlfiles="${srv_xmlfiles} i386/32bit-sse.xml" srv_lynxos=yes ;; i[34567]86-*-mingw32ce*) |