This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: PR ld/12247: Useless BFD linker plugin error message


I am checking in this patch to properly report loading plugin error.

H.J.
---
2010-11-20  H.J. Lu  <hongjiu.lu@intel.com>

	PR ld/12247
	* lexsup.c (parse_args): Properly report loading plugin error.

diff --git a/ld/lexsup.c b/ld/lexsup.c
index 39ca326..b6274f8 100644
--- a/ld/lexsup.c
+++ b/ld/lexsup.c
@@ -1056,7 +1056,8 @@ parse_args (unsigned argc, char **argv)
 #ifdef ENABLE_PLUGINS
 	case OPTION_PLUGIN:
 	  if (plugin_opt_plugin (optarg))
-	    einfo(_("%P%F: bad -plugin option\n"));
+	    einfo (_("%P%F: %s: error loading plugin\n"),
+		   plugin_error_plugin ());
 	  break;
 	case OPTION_PLUGIN_OPT:
 	  if (plugin_opt_plugin_arg (optarg))


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]