Browse Source

* readelf.c (parse_args): Select all sections explicitly for -w.

cgen-1_1-branch
Cary Coutant 17 years ago
parent
commit
613ff48bcb
  1. 4
      binutils/ChangeLog
  2. 5
      binutils/readelf.c

4
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 '-'.

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

Loading…
Cancel
Save