* ldlang.c (section_already_linked): Call bfd_link_just_syms.
authorAlan Modra <amodra@gmail.com>
Wed, 15 May 2002 00:19:23 +0000 (00:19 +0000)
committerAlan Modra <amodra@gmail.com>
Wed, 15 May 2002 00:19:23 +0000 (00:19 +0000)
(lang_place_orphans): Abort if just_syms_flag.

ld/ChangeLog
ld/ldlang.c

index a38bd69..f10f0dd 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-15  Alan Modra  <amodra@bigpond.net.au>
+
+       * ldlang.c (section_already_linked): Call bfd_link_just_syms.
+       (lang_place_orphans): Abort if just_syms_flag.
+
 2002-05-10  Tom Rix  <trix@redhat.com>
 
        * emultempl/aix.em: (gld*_set_output_arch): New function. Use 
index 054ffc0..885f74c 100644 (file)
@@ -959,8 +959,7 @@ section_already_linked (abfd, sec, data)
      discard all sections.  */
   if (entry->just_syms_flag)
     {
-      sec->output_section = bfd_abs_section_ptr;
-      sec->output_offset = sec->vma;
+      bfd_link_just_syms (sec, &link_info);
       return;
     }
 
@@ -3803,11 +3802,7 @@ lang_place_orphans ()
 
              if (file->just_syms_flag)
                {
-                 /* We are only retrieving symbol values from this
-                     file.  We want the symbols to act as though the
-                     values in the file are absolute.  */
-                 s->output_section = bfd_abs_section_ptr;
-                 s->output_offset = s->vma;
+                 abort ();
                }
              else if (strcmp (s->name, "COMMON") == 0)
                {