* objdump.c (dump_headers): Fix output formatting for ELF32
architectures in a BFD64 enabled toolchain. * bfd/bfd.c (bfd_get_arch_size): Remove bfd_set_error call for non-ELF targets.
This commit is contained in:
parent
41241523bf
commit
21611032e1
4 changed files with 15 additions and 2 deletions
|
@ -361,7 +361,11 @@ dump_headers (abfd)
|
|||
#ifndef BFD64
|
||||
printf (_("Idx Name Size VMA LMA File off Algn"));
|
||||
#else
|
||||
printf (_("Idx Name Size VMA LMA File off Algn"));
|
||||
/* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
|
||||
if (bfd_get_arch_size (abfd) == 32)
|
||||
printf (_("Idx Name Size VMA LMA File off Algn"));
|
||||
else
|
||||
printf (_("Idx Name Size VMA LMA File off Algn"));
|
||||
#endif
|
||||
|
||||
if (wide_output)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue