diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-01-02 22:48:58 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-01-02 22:48:58 +0000 |
commit | e1c145993ec59ed01a1bbc88c294ac3167fa5c66 (patch) | |
tree | 5f64409c2ca85fd80bd6e26c80f85dbd556bda1e /binutils/binutils.texi | |
parent | cd46af111eaebc699cc735387bddfce8ee4c37ff (diff) | |
download | gdb-e1c145993ec59ed01a1bbc88c294ac3167fa5c66.zip gdb-e1c145993ec59ed01a1bbc88c294ac3167fa5c66.tar.gz gdb-e1c145993ec59ed01a1bbc88c294ac3167fa5c66.tar.bz2 |
Implement generic debugging support. Implement a stabs reader and
a generic printer.
* budbg.h, debug.c, debug.h, prdbg.c, rddbg.c, stabs.c: New files.
* objdump.c: Include "debug.h" and "budbg.h".
(dump_debugging): New global variable.
(usage): Mention --debugging.
(long_options): Add "debugging".
(display_bfd): Handle --debugging.
* Makefile.in (OBJDUMP_OBJS): New variable.
($(OBJDUMP_PROG)): Use $(OBJDUMP_OBJS).
* binutils.texi, objdump.1: Document --debugging.
Diffstat (limited to 'binutils/binutils.texi')
-rw-r--r-- | binutils/binutils.texi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/binutils/binutils.texi b/binutils/binutils.texi index d53dbb1..fbec8be 100644 --- a/binutils/binutils.texi +++ b/binutils/binutils.texi @@ -955,7 +955,7 @@ Show a summary of the options to @code{objcopy}. @smallexample objdump [ -a | --archive-headers ] - [ -b @var{bfdname} | --target=@var{bfdname} ] + [ -b @var{bfdname} | --target=@var{bfdname} ] [ --debugging ] [ -d | --disassemble ] [ -D | --disassemble-all ] [ -f | --file-headers ] [ -h | --section-headers | --headers ] [ -i | --info ] @@ -1010,6 +1010,11 @@ file in the format produced by Oasys compilers. You can list the formats available with the @samp{-i} option. @xref{Target Selection}, for more information. +@item --debugging +Display debugging information. This attempts to parse debugging +information stored in the file and print it out using a C like syntax. +Only certain types of debugging information have been implemented. + @item -d @itemx --disassemble @cindex disassembling object code |