2014-07-21 Sriraman Tallam <tmsriram@google.com>

* object.cc (Relobj::is_section_name_included): Add
	".rodata.nptl_version".
This commit is contained in:
Sriraman Tallam 2014-07-21 11:12:05 -07:00
parent 1b396721c9
commit 5ad9b0a773
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-07-21 Sriraman Tallam <tmsriram@google.com>
* object.cc (Relobj::is_section_name_included): Add
".rodata.nptl_version".
2014-07-08 Cary Coutant <ccoutant@google.com>
* expression.cc (struct Expression::Expression_eval_info): Add

View File

@ -334,7 +334,9 @@ Relobj::is_section_name_included(const char* name)
|| (is_prefix_of(".sdata", name)
&& strstr(name, "personality"))
|| (is_prefix_of(".gnu.linkonce.d", name)
&& strstr(name, "personality")))
&& strstr(name, "personality"))
|| (is_prefix_of(".rodata", name)
&& strstr(name, "nptl_version")))
{
return true;
}