aboutsummaryrefslogtreecommitdiff
path: root/binutils/objdump.c
diff options
context:
space:
mode:
authorAnt Bikeneev <ant.bikineev@gmail.com>2018-05-30 17:06:26 +0100
committerNick Clifton <nickc@redhat.com>2018-05-30 17:08:03 +0100
commit1869e86f2eb13a9e1d1c42b97cdb98fef88afd83 (patch)
tree18f71cb0a58e06370f41152a3393130306b163fd /binutils/objdump.c
parentfdbe37e35fed48091296434652101a63fa4360cf (diff)
downloadgdb-1869e86f2eb13a9e1d1c42b97cdb98fef88afd83.zip
gdb-1869e86f2eb13a9e1d1c42b97cdb98fef88afd83.tar.gz
gdb-1869e86f2eb13a9e1d1c42b97cdb98fef88afd83.tar.bz2
Add option to ar's 't' command to display the offset of elements within the archive.
PR 23107 * ar.c (display_offsets): New variable. (usage): Add description of 'O' operator. (decode_option): Handle 'O' operator. (print_descr): Pass display_offsets to print_arelt_descr. * arsup.c: Update call to printy_arelt_descr. * objdump.c: Likewise. * bucomm.c (print_arelt_descr): If offsets parameter is true then display offset of archive element within the archive. * bucomm.h: Update prototype for print_arelt_descr. * doc/binutils.texi: Update description of ar command. * NEWS: Mention the new feature. * testsuite/binutils-all/ar.exp: Add text of new feature.
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r--binutils/objdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c
index aab2063..f468fcd 100644
--- a/binutils/objdump.c
+++ b/binutils/objdump.c
@@ -3582,7 +3582,7 @@ dump_bfd (bfd *abfd)
printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd),
abfd->xvec->name);
if (dump_ar_hdrs)
- print_arelt_descr (stdout, abfd, TRUE);
+ print_arelt_descr (stdout, abfd, TRUE, FALSE);
if (dump_file_header)
dump_bfd_header (abfd);
if (dump_private_headers)