* resolve.cc (symbol_to_bits): Report the value of the unsupported

binding.
This commit is contained in:
Ian Lance Taylor 2010-10-11 20:04:04 +00:00
parent 64b0002014
commit ac897c20f0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-10-11 Ian Lance Taylor <iant@google.com>
* resolve.cc (symbol_to_bits): Report the value of the unsupported
binding.
2010-10-06 Nick Clifton <nickc@redhat.com>
* script-sections.cc(class Memory_region): Remove

View File

@ -195,7 +195,7 @@ symbol_to_bits(elfcpp::STB binding, bool is_dynamic,
default:
// Any target which wants to handle STB_LOOS, etc., needs to
// define a resolve method.
gold_error(_("unsupported symbol binding"));
gold_error(_("unsupported symbol binding %d"), static_cast<int>(binding));
bits = global_flag;
}