From 613ff48bcb1fbccc0455d7f499e457acf3fc0c1e Mon Sep 17 00:00:00 2001 From: Cary Coutant Date: Mon, 23 Feb 2009 19:01:47 +0000 Subject: [PATCH] * readelf.c (parse_args): Select all sections explicitly for -w. --- binutils/ChangeLog | 4 ++++ binutils/readelf.c | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 18a0e99..0a2b91b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2009-02-23 Cary Coutant + + * readelf.c (parse_args): Select all sections explicitly for -w. + 2009-02-09 Kai Tietz * windres.c (set_endianess): Copy name without leading '-'. diff --git a/binutils/readelf.c b/binutils/readelf.c index 8820d92..16aae47 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -3037,7 +3037,10 @@ parse_args (int argc, char **argv) case 'w': do_dump++; if (optarg == 0) - do_debugging = 1; + { + do_debugging = 1; + dwarf_select_sections_all (); + } else { do_debugging = 0; -- 2.7.4