diff options
author | Stephen Crane <sjc@immunant.com> | 2017-12-01 12:10:02 -0800 |
---|---|---|
committer | Cary Coutant <ccoutant@gmail.com> | 2017-12-01 12:10:02 -0800 |
commit | 71739b698d47945463f183619078ff680c277f0f (patch) | |
tree | 52ab242525ddf5bbf79c77d120bab54b339d1318 /gold/ChangeLog | |
parent | e2e321740ce2e36a97be2a410cd56eebaa2304aa (diff) | |
download | gdb-71739b698d47945463f183619078ff680c277f0f.zip gdb-71739b698d47945463f183619078ff680c277f0f.tar.gz gdb-71739b698d47945463f183619078ff680c277f0f.tar.bz2 |
Fix problem where undef can fail to trigger archive rescan.
If a shared library contains an undefined symbol and LTO adds
a new reference to that same undefined symbol, the reference in the new
object added by the plugin would not trigger a rescan of the archive
containing the symbol.
2017-11-17 Stephen Crane <sjc@immunant.com>
gold/
PR gold/22448
* symtab.cc (Symbol_table::add_from_object): Only rescan for
undefined symbols in regular, not dynamic, objects.
Diffstat (limited to 'gold/ChangeLog')
-rw-r--r-- | gold/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 43a3d70..e4b890e 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,9 @@ +2017-11-17 Stephen Crane <sjc@immunant.com> + + PR gold/22448 + * symtab.cc (Symbol_table::add_from_object): Only rescan for + undefined symbols in regular, not dynamic, objects. + 2017-11-30 Peter Smith <peter.smith@linaro.org> PR gold/20765 |