diff options
author | Nick Clifton <nickc@redhat.com> | 2009-05-28 11:30:49 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2009-05-28 11:30:49 +0000 |
commit | fc579192b43d249de3661894c154342a6c7ebad2 (patch) | |
tree | 0ac1a2b40977a47e2e75d9faf678a36020e0bb45 /bfd/plugin.c | |
parent | 5dff79d83d209d48f13ad385ae8dc3e690bf9295 (diff) | |
download | gdb-fc579192b43d249de3661894c154342a6c7ebad2.zip gdb-fc579192b43d249de3661894c154342a6c7ebad2.tar.gz gdb-fc579192b43d249de3661894c154342a6c7ebad2.tar.bz2 |
2009-05-28 Nick Clifton <nickc@redhat.com>
* targets.c (_bfd_target_vector): Only include plugin target in
all-targets build if BFD_SUPPORTS_PLUGINS is non-zero.
2009-05-27 Rafael Avila de Espindola <espindola@google.com>
* plugin.c (program_name): Remove.
(plugin_program_name): New.
(bfd_plugin_set_program_name): New.
(try_load_plugin): Use plugin_program_name.
* plugin.h (bfd_plugin_set_program_name): New.
2009-05-27 Rafael Avila de Espindola <espindola@google.com>
* ar.c (main): Call bfd_plugin_set_program_name.
* nm.c (main): Call bfd_plugin_set_program_name.
Diffstat (limited to 'bfd/plugin.c')
-rw-r--r-- | bfd/plugin.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/bfd/plugin.c b/bfd/plugin.c index 49395e8..ca47ab6 100644 --- a/bfd/plugin.c +++ b/bfd/plugin.c @@ -106,7 +106,13 @@ add_symbols (void * handle, return LDPS_OK; } -extern char *program_name __attribute__ ((weak)); +static const char *plugin_program_name; + +void +bfd_plugin_set_program_name (const char *program_name) +{ + plugin_program_name = program_name; +} static int try_load_plugin (const char *pname) @@ -180,11 +186,11 @@ load_plugin (void) if (plugin_name) return try_load_plugin (plugin_name); - if (!program_name) + if (plugin_program_name == NULL) return 0; plugin_dir = concat (BINDIR, "/../lib/bfd-plugins", NULL); - p = make_relative_prefix (program_name, + p = make_relative_prefix (plugin_program_name, BINDIR, plugin_dir); free (plugin_dir); |