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:
Nick Clifton
2023-05-26 15:41:20 +01:00
parent 5fd6b60d86
commit 45b8517aae
11 changed files with 670 additions and 7 deletions

View File

@@ -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;