diff options
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 6 | ||||
-rw-r--r-- | gold/copy-relocs.cc | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 36ed7c9..b974662 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,9 @@ +2010-01-07 Ian Lance Taylor <iant@google.com> + + PR 11042 + * copy-relocs.cc (Copy_relocs::emit_copy_reloc): Mark the dynamic + object as needed. + 2010-01-07 Dmitry Gorbachev <d.g.gorbachev@gmail.com> Ian Lance Taylor <iant@google.com> diff --git a/gold/copy-relocs.cc b/gold/copy-relocs.cc index 4a98f83..0501ea0 100644 --- a/gold/copy-relocs.cc +++ b/gold/copy-relocs.cc @@ -132,6 +132,9 @@ Copy_relocs<sh_type, size, big_endian>::emit_copy_reloc( while ((value & (addralign - 1)) != 0) addralign >>= 1; + // Mark the dynamic object as needed for the --as-needed option. + sym->object()->set_is_needed(); + if (this->dynbss_ == NULL) { this->dynbss_ = new Output_data_space(addralign, "** dynbss"); |