diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2020-03-02 03:08:57 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2020-03-02 03:09:08 -0800 |
commit | 577350603a657590c4b54a4a966cb49497e2514c (patch) | |
tree | 34e7bc2d73a42aa618a1293dd3ac3c06167a2f84 /libiberty | |
parent | 917e56a94f9d3189d7fa9d1944b7513258195887 (diff) | |
download | gcc-577350603a657590c4b54a4a966cb49497e2514c.zip gcc-577350603a657590c4b54a4a966cb49497e2514c.tar.gz gcc-577350603a657590c4b54a4a966cb49497e2514c.tar.bz2 |
lto: Also copy .note.gnu.property section
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.
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 6 | ||||
-rw-r--r-- | libiberty/simple-object.c | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 84225ad..91ae004 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -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 diff --git a/libiberty/simple-object.c b/libiberty/simple-object.c index d9c648a..e6c466a 100644 --- a/libiberty/simple-object.c +++ b/libiberty/simple-object.c @@ -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. */ |