forked from Imagelibrary/binutils-gdb
Warn for ar/nm/ranlib/ld on lto objects without plugin
PR 13227 bfd/ * archive.c (_bfd_compute_and_write_armap): Warn on adding __gnu_lto_slim to armap. * linker.c (_bfd_generic_link_add_one_symbol): Warn on adding __gnu_lto_slim to linker hash table. binutils/ * nm.c (filter_symbols): Warn on __gnu_lto_slim.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2014-07-28 Alan Modra <amodra@gmail.com>
|
||||
|
||||
PR 13227
|
||||
* nm.c (filter_symbols): Warn on __gnu_lto_slim.
|
||||
|
||||
2014-07-07 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* readelf.c (get_symbol_type): Revert accidental change to
|
||||
|
||||
@@ -434,6 +434,10 @@ filter_symbols (bfd *abfd, bfd_boolean is_dynamic, void *minisyms,
|
||||
if (sym == NULL)
|
||||
bfd_fatal (bfd_get_filename (abfd));
|
||||
|
||||
if (strcmp (sym->name, "__gnu_lto_slim") == 0)
|
||||
non_fatal (_("%s: plugin needed to handle lto object"),
|
||||
bfd_get_filename (abfd));
|
||||
|
||||
if (undefined_only)
|
||||
keep = bfd_is_und_section (sym->section);
|
||||
else if (external_only)
|
||||
|
||||
Reference in New Issue
Block a user