diff options
author | Cary Coutant <ccoutant@google.com> | 2009-02-23 19:01:47 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2009-02-23 19:01:47 +0000 |
commit | 613ff48bcb1fbccc0455d7f499e457acf3fc0c1e (patch) | |
tree | c098764c9e0f1ee73203dec2f8d478c6515b1e50 | |
parent | 2fb89e62ac5f7fdeb524d9180140bd68e9773db7 (diff) | |
download | gdb-613ff48bcb1fbccc0455d7f499e457acf3fc0c1e.zip gdb-613ff48bcb1fbccc0455d7f499e457acf3fc0c1e.tar.gz gdb-613ff48bcb1fbccc0455d7f499e457acf3fc0c1e.tar.bz2 |
* readelf.c (parse_args): Select all sections explicitly for -w.
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 5 |
2 files changed, 8 insertions, 1 deletions
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 <ccoutant@google.com> + + * readelf.c (parse_args): Select all sections explicitly for -w. + 2009-02-09 Kai Tietz <kai.tietz@onevision.com> * 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; |