diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-12-03 14:34:06 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-12-03 14:34:06 +0000 |
commit | d82184d78220ce42e0f54ce9fbb0688860ff0388 (patch) | |
tree | 1546be4daa2443faede76fa4131484e4fc13b347 /ld/ChangeLog | |
parent | dc9589e9756c8719b355472080fa8095a0ba68a7 (diff) | |
download | gdb-d82184d78220ce42e0f54ce9fbb0688860ff0388.zip gdb-d82184d78220ce42e0f54ce9fbb0688860ff0388.tar.gz gdb-d82184d78220ce42e0f54ce9fbb0688860ff0388.tar.bz2 |
Improve plugin error handling
ld/
PR ld/14904
* ldmain.c (main): Don't check plugin_load_plugins return.
* lexsup.c (parse_args): Don't check plugin_opt_plugin return.
* plugin.c (dlerror): New. Defined if HAVE_DLFCN_H isn't
defined.
(plugin_opt_plugin): Change return type to void. Stop on
dlopen error and report error with dlerror ().
(plugin_load_plugins): Change return type to void. Stop on
dlsym error and report error with dlerror (). Don't use
set_plugin_error.
(plugin_call_cleanup): Issue an error for each plugin.
* plugin.h (plugin_opt_plugin): Change return type to void.
(plugin_load_plugins): Likewise.
ld/testsuite/
PR ld/14904
* ld-plugin/plugin-2.d: Update expected error message.
* ld-plugin/plugin-4.d: Likewise.
Diffstat (limited to 'ld/ChangeLog')
-rw-r--r-- | ld/ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 4befee4..812a5ff 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,22 @@ +2012-12-03 H.J. Lu <hongjiu.lu@intel.com> + + PR ld/14904 + * ldmain.c (main): Don't check plugin_load_plugins return. + + * lexsup.c (parse_args): Don't check plugin_opt_plugin return. + + * plugin.c (dlerror): New. Defined if HAVE_DLFCN_H isn't + defined. + (plugin_opt_plugin): Change return type to void. Stop on + dlopen error and report error with dlerror (). + (plugin_load_plugins): Change return type to void. Stop on + dlsym error and report error with dlerror (). Don't use + set_plugin_error. + (plugin_call_cleanup): Issue an error for each plugin. + + * plugin.h (plugin_opt_plugin): Change return type to void. + (plugin_load_plugins): Likewise. + 2012-11-30 Joern Rennecke <joern.rennecke@embecosm.com> * scripttempl/epiphany_4x4.sc, emulparams/elf32epiphany_4x4.sh: Add. |