* 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

@ -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;
}