diff options
author | Nick Clifton <nickc@redhat.com> | 2021-03-16 16:39:46 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2021-03-16 16:39:46 +0000 |
commit | d6bfbc398158eaa381b08c7cf7b943ac4085d4a6 (patch) | |
tree | f35fc7a879be775293a37173413cdd5c1724b4cf /binutils | |
parent | 383228bc3f46579da035598f33c67b2538c9821a (diff) | |
download | gdb-d6bfbc398158eaa381b08c7cf7b943ac4085d4a6.zip gdb-d6bfbc398158eaa381b08c7cf7b943ac4085d4a6.tar.gz gdb-d6bfbc398158eaa381b08c7cf7b943ac4085d4a6.tar.bz2 |
Re-enable the dislay of debug sections in separate debuginfo files without the need for -P.
PR 27533
* readelf.c (process_section_contents): Only dump debug
information for separate files unless process_links is enabled.
(process_object): Always call process_section_contents for
separate info files.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 8 | ||||
-rw-r--r-- | binutils/readelf.c | 7 |
2 files changed, 13 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 62f98b4..e9a78ee 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,11 @@ +2021-03-16 Nick Clifton <nickc@redhat.com> + + PR 27533 + * readelf.c (process_section_contents): Only dump debug + information for separate files unless process_links is enabled. + (process_object): Always call process_section_contents for + separate info files. + 2021-03-15 Nick Clifton <nickc@redhat.com> PR 27487 diff --git a/binutils/readelf.c b/binutils/readelf.c index 1994eeb..2205ba1 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -15509,6 +15509,9 @@ process_section_contents (Filedata * filedata) { dump_type dump = filedata->dump.dump_sects[i]; + if (filedata->is_separate && ! process_links) + dump &= DEBUG_DUMP; + #ifdef SUPPORT_DISASSEMBLY if (dump & DISASS_DUMP) { @@ -21222,10 +21225,10 @@ process_object (Filedata * filedata) res = FALSE; else if (! process_section_headers (d->handle)) res = FALSE; + else if (! process_section_contents (d->handle)) + res = FALSE; else if (process_links) { - if (! process_section_contents (d->handle)) - res = FALSE; if (! process_section_groups (d->handle)) res = FALSE; if (! process_program_headers (d->handle)) |