OSDN Git Service

* resolve.cc (symbol_to_bits): Report the value of the unsupported
authorian <ian>
Tue, 12 Oct 2010 05:04:04 +0000 (05:04 +0000)
committerian <ian>
Tue, 12 Oct 2010 05:04:04 +0000 (05:04 +0000)
binding.

gold/ChangeLog
gold/resolve.cc

index 07ee753..71a0fd5 100644 (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
index 4864f1e..a9a89fa 100644 (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;
     }