aboutsummaryrefslogtreecommitdiff
path: root/gdb/features/Makefile
diff options
context:
space:
mode:
authorYao Qi <yao.qi@linaro.org>2017-07-26 12:03:47 +0100
committerYao Qi <yao.qi@linaro.org>2017-07-26 12:03:47 +0100
commit8e2141c6fba6daea1555e042da9de49ec8b1977d (patch)
treed273c1f083bb0c1814017320201269bf22c59c9d /gdb/features/Makefile
parentb468ff4cbf14744d512e464b4be9681d3e0302ad (diff)
downloadgdb-8e2141c6fba6daea1555e042da9de49ec8b1977d.zip
gdb-8e2141c6fba6daea1555e042da9de49ec8b1977d.tar.gz
gdb-8e2141c6fba6daea1555e042da9de49ec8b1977d.tar.bz2
Add optional argument to command "maint prints c-tdesc"
Nowadays, we need two steps to print c files for xml target description, that is, 1) read xml target description in, update the current tdesc, 2) visit the current tdesc, print the c file. It is unnecessary to involve in current tdesc, and some validations in each gdbarch are performed unnecessarily, which will reject some target descriptions if they are missing some mandatory feature. This patch adds an optional argument to "maint print c-tdesc", which is an XML file target description, so that we can combine the two steps above into one step, and don't have to involve in global current tdesc. gdb: 2017-07-26 Yao Qi <yao.qi@linaro.org> * NEWS: Mention it. * features/Makefile (%.c: %.xml): Pass the xml file name to command "maint print c-tdesc". * target-descriptions.c (maint_print_c_tdesc_cmd): Get file name from 'arg'. gdb/doc: 2017-07-26 Yao Qi <yao.qi@linaro.org> * gdb.texinfo (Maintenance Commands): Document optional argument of "maint print c-tdesc".
Diffstat (limited to 'gdb/features/Makefile')
-rw-r--r--gdb/features/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/features/Makefile b/gdb/features/Makefile
index 75741ac..7ddb578 100644
--- a/gdb/features/Makefile
+++ b/gdb/features/Makefile
@@ -254,8 +254,7 @@ $(outdir)/%.dat: %.xml number-regs.xsl sort-regs.xsl gdbserver-regs.xsl
cfiles: $(CFILES)
%.c: %.xml
- $(GDB) -nx -q -batch \
- -ex "set tdesc filename $<" -ex 'maint print c-tdesc' > $@.tmp
+ $(GDB) -nx -q -batch -ex 'maint print c-tdesc $<' > $@.tmp
sh ../../move-if-change $@.tmp $@
# Other dependencies.