forked from Imagelibrary/binutils-gdb
From Cary Coutant: only check for a linkonce section if the SHF_GROUP
flag is clear.
This commit is contained in:
@@ -439,7 +439,8 @@ Sized_relobj<size, big_endian>::do_layout(const General_options& options,
|
||||
if (!this->include_section_group(layout, i, shdr, &omit))
|
||||
discard = true;
|
||||
}
|
||||
else if (Layout::is_linkonce(name))
|
||||
else if ((shdr.get_sh_flags() & elfcpp::SHF_GROUP) == 0
|
||||
&& Layout::is_linkonce(name))
|
||||
{
|
||||
if (!this->include_linkonce_section(layout, name, shdr))
|
||||
discard = true;
|
||||
|
||||
Reference in New Issue
Block a user