diff options
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 5 | ||||
-rw-r--r-- | gold/resolve.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 07ee753..71a0fd5 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -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 diff --git a/gold/resolve.cc b/gold/resolve.cc index 4864f1e..a9a89fa 100644 --- a/gold/resolve.cc +++ b/gold/resolve.cc @@ -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; } |