diff options
author | Andrew Haley <aph@redhat.com> | 2003-03-06 15:47:23 +0000 |
---|---|---|
committer | Andrew Haley <aph@redhat.com> | 2003-03-06 15:47:23 +0000 |
commit | 2d36fe5f1f0ac52641710db38aca664e49557993 (patch) | |
tree | 54c0d85db1a97f7ec3b21ad1d77857407f3e77fd /bfd/elflink.h | |
parent | 34f304a7737a610550e043facb04bc24c4e02610 (diff) | |
download | gdb-2d36fe5f1f0ac52641710db38aca664e49557993.zip gdb-2d36fe5f1f0ac52641710db38aca664e49557993.tar.gz gdb-2d36fe5f1f0ac52641710db38aca664e49557993.tar.bz2 |
2003-03-06 Jakub Jelinek <jakub@redhat.com>
Andrew Haley <aph@redhat.com>
* elflink.h (elf_bfd_discard_info): Don't process eh frames if
output is relocateable.
Diffstat (limited to 'bfd/elflink.h')
-rw-r--r-- | bfd/elflink.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bfd/elflink.h b/bfd/elflink.h index 7d2d2e2..c39120d 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -8329,9 +8329,10 @@ elf_bfd_discard_info (output_bfd, info) continue; eh = bfd_get_section_by_name (abfd, ".eh_frame"); - if (eh != NULL - && (eh->_raw_size == 0 - || bfd_is_abs_section (eh->output_section))) + if (info->relocateable + || (eh != NULL + && (eh->_raw_size == 0 + || bfd_is_abs_section (eh->output_section)))) eh = NULL; stab = bfd_get_section_by_name (abfd, ".stab"); @@ -8432,6 +8433,7 @@ elf_bfd_discard_info (output_bfd, info) } if (info->eh_frame_hdr + && !info->relocateable && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info)) ret = TRUE; |