]> gcc.gnu.org Git - gcc.git/commitdiff
lto: Also copy .note.gnu.property section
authorH.J. Lu <hjl.tools@gmail.com>
Mon, 2 Mar 2020 11:08:57 +0000 (03:08 -0800)
committerH.J. Lu <hjl.tools@gmail.com>
Mon, 2 Mar 2020 11:09:08 +0000 (03:09 -0800)
When generating the separate file with LTO debug sections, we should
also copy .note.gnu.property section.

PR lto/93966
* simple-object.c (handle_lto_debug_sections): Also copy
.note.gnu.property section.

libiberty/ChangeLog
libiberty/simple-object.c

index 84225ad969b02f2745adc2ca03d1f43e1cc151ee..91ae004005f082d2c0e9ff4b70afaf154580328c 100644 (file)
@@ -1,3 +1,9 @@
+2020-03-02  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR lto/93966
+       * simple-object.c (handle_lto_debug_sections): Also copy
+       .note.gnu.property section.
+
 2020-02-12  Sandra Loosemore  <sandra@codesourcery.com>
 
        PR libstdc++/79193
index d9c648af71783ef41b7277df9728bfa896aec1d7..e6c466ab767b681498cdffecb081b2ae76b82b94 100644 (file)
@@ -293,6 +293,9 @@ handle_lto_debug_sections (const char *name, int rename)
   /* Copy over .note.GNU-stack section under the same name if present.  */
   else if (strcmp (name, ".note.GNU-stack") == 0)
     return strcpy (newname, name);
+  /* Copy over .note.gnu.property section under the same name if present.  */
+  else if (strcmp (name, ".note.gnu.property") == 0)
+    return strcpy (newname, name);
   /* Copy over .comment section under the same name if present.  Solaris
      ld uses them to relax its checking of ELF gABI access rules for
      COMDAT sections in objects produced by GCC.  */
This page took 0.073824 seconds and 5 git commands to generate.