OSDN Git Service

* layout.cc (Layout::layout_reloc): In relocatable link don't
authorian <ian>
Sat, 24 Apr 2010 14:32:23 +0000 (14:32 +0000)
committerian <ian>
Sat, 24 Apr 2010 14:32:23 +0000 (14:32 +0000)
combine reloc sections for grouped sections.

gold/ChangeLog
gold/layout.cc

index 153828c..5b50264 100644 (file)
@@ -1,3 +1,8 @@
+2010-04-24  Ian Lance Taylor  <iant@google.com>
+
+       * layout.cc (Layout::layout_reloc): In relocatable link don't
+       combine reloc sections for grouped sections.
+
 2010-04-23  Sriraman Tallam  <tmsriram@google.com>
 
        * gc.h (gc_process_relocs): Pass information on relocs pointing to
index 2ffbdf4..36cfa8b 100644 (file)
@@ -699,11 +699,20 @@ Layout::layout_reloc(Sized_relobj<size, big_endian>* object,
     gold_unreachable();
   name += data_section->name();
 
-  Output_section* os = this->choose_output_section(object, name.c_str(),
-                                                  sh_type,
-                                                  shdr.get_sh_flags(),
-                                                  false, false, false,
-                                                  false, false, false);
+  // In a relocatable link relocs for a grouped section must not be
+  // combined with other reloc sections.
+  Output_section* os;
+  if (!parameters->options().relocatable()
+      || (data_section->flags() & elfcpp::SHF_GROUP) == 0)
+    os = this->choose_output_section(object, name.c_str(), sh_type,
+                                    shdr.get_sh_flags(), false, false,
+                                    false, false, false, false);
+  else
+    {
+      const char* n = this->namepool_.add(name.c_str(), true, NULL);
+      os = this->make_output_section(n, sh_type, shdr.get_sh_flags(),
+                                    false, false, false, false, false);
+    }
 
   os->set_should_link_to_symtab();
   os->set_info_section(data_section);