OSDN Git Service

2003-03-06 Jakub Jelinek <jakub@redhat.com>
authoraph <aph>
Thu, 6 Mar 2003 15:47:23 +0000 (15:47 +0000)
committeraph <aph>
Thu, 6 Mar 2003 15:47:23 +0000 (15:47 +0000)
        Andrew Haley  <aph@redhat.com>

        * elflink.h (elf_bfd_discard_info): Don't process eh frames if
        output is relocateable.

bfd/ChangeLog
bfd/elflink.h

index 968104e..341e629 100644 (file)
@@ -1,3 +1,9 @@
+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.
+
 2003-03-06  Steven Konopa <skonopa@kgo.csc.com>
 
        * som.c (som_fixup_formats): Correct formats for R_AUX_UNWIND and
index 7d2d2e2..c39120d 100644 (file)
@@ -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;