diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2011-03-04 23:44:01 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2011-03-04 23:44:01 +0000 |
commit | 1715a13cc2716b05ab6715f81c5d1f852675ed20 (patch) | |
tree | 75321a4f5b940b002179db047cf2dc0dfa9f90ed /ld/plugin.h | |
parent | 51dc551dc20e8447413408430af80e253f5e872f (diff) | |
download | gdb-1715a13cc2716b05ab6715f81c5d1f852675ed20.zip gdb-1715a13cc2716b05ab6715f81c5d1f852675ed20.tar.gz gdb-1715a13cc2716b05ab6715f81c5d1f852675ed20.tar.bz2 |
Report plugin symbols for --verbose=N.
2011-03-04 H.J. Lu <hongjiu.lu@intel.com>
* ld.texinfo: Document --verbose[=NUMBER].
* lexsup.c (ld_options): Update --verbose.
(parse_args): Set report_plugin_symbols.
* plugin.c (report_plugin_symbols): New.
(get_symbols): Report plugin symbols if report_plugin_symbols
is TRUE.
* plugin.h (report_plugin_symbols): New.
Diffstat (limited to 'ld/plugin.h')
-rw-r--r-- | ld/plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ld/plugin.h b/ld/plugin.h index 5b340be..6ba8fa8 100644 --- a/ld/plugin.h +++ b/ld/plugin.h @@ -21,6 +21,8 @@ #ifndef GLD_PLUGIN_H #define GLD_PLUGIN_H +/* Report plugin symbols. */ +extern bfd_boolean report_plugin_symbols; /* This is the only forward declaration we need to avoid having to include the plugin-api.h header in order to use this file. */ |