diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 7bbc0dec6c8..0be41b24d13 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,12 @@ +2020-03-02 H.J. Lu + + Backport from master + 2020-03-02 H.J. Lu + + PR lto/93966 + * simple-object.c (handle_lto_debug_sections): Also copy + .note.gnu.property section. + 2019-08-12 Release Manager * GCC 9.2.0 released. diff --git a/libiberty/simple-object.c b/libiberty/simple-object.c index b00c265128c..7fdb30f3416 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. */