mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-03 05:12:28 +08:00
* script.cc (Version_script_info::build_expression_list_lookup):
Change complaing about duplicate wildcard match from error to warning.
This commit is contained in:
@ -2145,9 +2145,9 @@ Version_script_info::build_expression_list_lookup(
|
||||
{
|
||||
if (this->default_version_ != NULL
|
||||
&& this->default_version_->tag != v->tag)
|
||||
gold_error(_("wildcard match appears in both version '%s' "
|
||||
"and '%s' in script"),
|
||||
this->default_version_->tag.c_str(), v->tag.c_str());
|
||||
gold_warning(_("wildcard match appears in both version '%s' "
|
||||
"and '%s' in script"),
|
||||
this->default_version_->tag.c_str(), v->tag.c_str());
|
||||
else if (this->default_version_ != NULL
|
||||
&& this->default_is_global_ != is_global)
|
||||
gold_error(_("wildcard match appears as both global and local "
|
||||
|
Reference in New Issue
Block a user