diff options
author | Nick Clifton <nickc@redhat.com> | 2003-07-22 13:33:32 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-07-22 13:33:32 +0000 |
commit | 51cdc6e0567d26a31363dabf869c43225efc9d9a (patch) | |
tree | d974fcf2d03988977eb2353b75b0415bb5d08167 /binutils/doc | |
parent | aef9bcd2e745b304d13f147cce75a8ce481cfc4b (diff) | |
download | gdb-51cdc6e0567d26a31363dabf869c43225efc9d9a.zip gdb-51cdc6e0567d26a31363dabf869c43225efc9d9a.tar.gz gdb-51cdc6e0567d26a31363dabf869c43225efc9d9a.tar.bz2 |
* objdump.c: New command line option --debugging-tags.
* doc/binutils.texi: Document new command line option.
* prdbg.c: Code to print the debug info as tags compatible with ctags.
* budbg.h: Adjust prototype.
* NEWS: Mention new switch
Diffstat (limited to 'binutils/doc')
-rw-r--r-- | binutils/doc/binutils.texi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/binutils/doc/binutils.texi b/binutils/doc/binutils.texi index 256acf0..f86169d 100644 --- a/binutils/doc/binutils.texi +++ b/binutils/doc/binutils.texi @@ -1435,6 +1435,7 @@ objdump [@option{-a}|@option{--archive-headers}] [@option{-f}|@option{--file-headers}] [@option{--file-start-context}] [@option{-g}|@option{--debugging}] + [@option{-e}|@option{--debugging-tags}] [@option{-h}|@option{--section-headers}|@option{--headers}] [@option{-i}|@option{--info}] [@option{-j} @var{section}|@option{--section=}@var{section}] @@ -1480,7 +1481,7 @@ object files. The long and short forms of options, shown here as alternatives, are equivalent. At least one option from the list -@option{-a,-d,-D,-f,-g,-G,-h,-H,-p,-r,-R,-S,-t,-T,-V,-x} must be given. +@option{-a,-d,-D,-e,-f,-g,-G,-h,-H,-p,-r,-R,-S,-t,-T,-V,-x} must be given. @table @env @item -a @@ -1536,6 +1537,11 @@ Only certain types of debugging information have been implemented. Some other types are supported by @command{readelf -w}. @xref{readelf}. +@item -e +@itemx --debugging-tags +Like @option{-g}, but the information is generated in a format compatible +with ctags tool. + @item -d @itemx --disassemble @cindex disassembling object code |