diff options
Diffstat (limited to 'bfd/linker.c')
-rw-r--r-- | bfd/linker.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bfd/linker.c b/bfd/linker.c index 2f3ac82..f70f799 100644 --- a/bfd/linker.c +++ b/bfd/linker.c @@ -1066,7 +1066,14 @@ generic_link_add_symbol_list (abfd, info, symbol_count, symbols) || (bfd_get_section (p) != &bfd_und_section && (! bfd_is_com_section (bfd_get_section (p)) || (bfd_get_section (h->sym) == &bfd_und_section)))) - h->sym = p; + { + h->sym = p; + /* BSF_OLD_COMMON is a hack to support COFF reloc + reading, and it should go away when the COFF + linker is switched to the new version. */ + if (bfd_is_com_section (bfd_get_section (p))) + p->flags |= BSF_OLD_COMMON; + } } } } |