* emultempl/mmo.em (mmo_place_orphan): Handle case of no .text
[deliverable/binutils-gdb.git] / ld / emultempl / mmo.em
index d8675bf392b50048b9e03225d317e942b924ae3a..23bab1653764b0883ef1f93ae592f61afe4ceffe 100644 (file)
@@ -152,6 +152,17 @@ mmo_place_orphan (file, s)
   /* Restore the global list pointer.  */
   stat_ptr = old;
 
+  /* We need an output section for .text as a root, so if there was none
+     (might happen with a peculiar linker script such as in "map
+     addresses", map-address.exp), we grab the output section created
+     above.  */
+  if (hold_text.os == NULL)
+    {
+      if (os == NULL)
+       return false;
+      hold_text.os = os;
+    }
+
   snew = os->bfd_section;
   bfd_section = place->os->bfd_section;
   if (place->section == NULL && bfd_section == NULL)
This page took 0.024727 seconds and 4 git commands to generate.