mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
Enhance objdump's --private option so that it can display the contents of PE format files.
* od-pe.c: New file: Dumps fields in PE format headers. * configure.ac (od_vectors): Add objdump_private_desc_pe for PE format targets. (od_files): Add od-pe for PE format targets. * configure: Regenerate. * Makefile.am (CFILES): Add od-pe.c (EXTRA_objdump_SOURCE): Likewise. * Makefile.in: Generate. * NEWS: Mention the new feature. * doc/binutils.texi: Document the new support. * objdump.c (wide_output): Change from local to global. * objdump.h (wide_output): Prototype. (objdump_private_desc_pe): Prototype. * testsuite/binutils-all/objdump.exp: Add a test of the new feature.
This commit is contained in:
@@ -18,6 +18,9 @@
|
||||
Foundation, 51 Franklin Street - Fifth Floor, Boston,
|
||||
MA 02110-1301, USA. */
|
||||
|
||||
/* Non-zero if wide output has been enabled. */
|
||||
extern int wide_output;
|
||||
|
||||
struct objdump_private_option
|
||||
{
|
||||
/* Option name. */
|
||||
@@ -43,11 +46,15 @@ struct objdump_private_desc
|
||||
/* List of options. Terminated by a NULL name. */
|
||||
struct objdump_private_option *options;
|
||||
};
|
||||
|
||||
/* ELF32_AVR specific target. */
|
||||
extern const struct objdump_private_desc objdump_private_desc_elf32_avr;
|
||||
|
||||
/* XCOFF specific target. */
|
||||
extern const struct objdump_private_desc objdump_private_desc_xcoff;
|
||||
|
||||
/* PE specific target. */
|
||||
extern const struct objdump_private_desc objdump_private_desc_pe;
|
||||
|
||||
/* Mach-O specific target. */
|
||||
extern const struct objdump_private_desc objdump_private_desc_mach_o;
|
||||
|
||||
Reference in New Issue
Block a user