diff options
author | Daniel Jacobowitz <dan@debian.org> | 2007-10-15 19:19:18 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2007-10-15 19:19:18 +0000 |
commit | 2c6a29997f7634fc60af72681acdb205d3f47ca9 (patch) | |
tree | f18abbc68c16fe1dc8b1d323722dba0c4e95d82d /gdb/config | |
parent | 6bbbc68a14fa51ad1f72aa90831c9d3364efdbd7 (diff) | |
download | gdb-2c6a29997f7634fc60af72681acdb205d3f47ca9.tar.gz |
* target-descriptions.c (tdesc_predefined_types): New.
(tdesc_named_type): Use it.
(tdesc_type_id, maint_print_c_tdesc_cmd): New functions.
(_intialize_target_descriptions): Register "maint print c-tdesc".
* features/Makefile (XMLTOC, CFILES, GDB): New macros.
(cfiles, %.c): New rules.
* features/arm-with-iwmmxt.c, features/mips-linux.c,
features/mips64-linux.c: New generated files.
* arm-linux-nat.c: Include preparsed description instead of
"xml-support.h".
(super_xfer_partial, arm_linux_xfer_partial): Remove.
(arm_linux_read_description): New function.
(_initialize_arm_linux_nat): Set to_read_description instead of
to_xfer_partial. Initialize preparsed description.
* config/arm/linux.mh (TDEP_XML): Delete.
* mips-linux-nat.c: Include preparsed descriptions instead of
"xml-support.h".
(super_xfer_partial, mips_linux_xfer_partial): Remove.
(mips_linux_read_description): New function.
(_initialize_mips_linux_nat): Set to_read_description instead of
to_xfer_partial. Initialize preparsed description.
* config/mips/linux.mh (TDEP_XML): Delete.
* Makefile.in (XMLFILES): Remove $(TDEP_XML).
(features_headers, arm_with_iwmmxt_c, mips_linux_c)
(mips64_linux_c): New macros.
(arm-linux-nat.o, mips-linux-nat.o): Update.
* gdb.texinfo (Maintenance Commands): Document "maint print c-tdesc".
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/arm/linux.mh | 4 | ||||
-rw-r--r-- | gdb/config/mips/linux.mh | 9 |
2 files changed, 0 insertions, 13 deletions
diff --git a/gdb/config/arm/linux.mh b/gdb/config/arm/linux.mh index adca462e5f0..b708f4b1de4 100644 --- a/gdb/config/arm/linux.mh +++ b/gdb/config/arm/linux.mh @@ -5,7 +5,3 @@ NATDEPFILES= inf-ptrace.o fork-child.o arm-linux-nat.o gcore.o \ proc-service.o linux-thread-db.o linux-nat.o linux-fork.o LOADLIBES= -ldl -rdynamic - -TDEP_XML = $(srcdir)/features/arm-with-iwmmxt.xml \ - $(srcdir)/features/xscale-iwmmxt.xml \ - $(srcdir)/features/arm-core.xml diff --git a/gdb/config/mips/linux.mh b/gdb/config/mips/linux.mh index 01478b618c8..32381a4aa0c 100644 --- a/gdb/config/mips/linux.mh +++ b/gdb/config/mips/linux.mh @@ -5,12 +5,3 @@ NATDEPFILES= inf-ptrace.o fork-child.o mips-linux-nat.o \ linux-nat.o linux-fork.o LOADLIBES = -ldl -rdynamic - -TDEP_XML = $(srcdir)/features/mips-cpu.xml \ - $(srcdir)/features/mips-cp0.xml \ - $(srcdir)/features/mips-fpu.xml \ - $(srcdir)/features/mips-linux.xml \ - $(srcdir)/features/mips64-cpu.xml \ - $(srcdir)/features/mips64-cp0.xml \ - $(srcdir)/features/mips64-fpu.xml \ - $(srcdir)/features/mips64-linux.xml |