diff options
Diffstat (limited to 'gold/plugin.cc')
-rw-r--r-- | gold/plugin.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/plugin.cc b/gold/plugin.cc index c9e55ef..ba4bd4c 100644 --- a/gold/plugin.cc +++ b/gold/plugin.cc @@ -106,8 +106,8 @@ Plugin::load() this->handle_ = dlopen(this->filename_.c_str(), RTLD_NOW); if (this->handle_ == NULL) { - gold_error(_("%s: could not load plugin library"), - this->filename_.c_str()); + gold_error(_("%s: could not load plugin library: %s"), + this->filename_.c_str(), dlerror()); return; } |