summaryrefslogtreecommitdiff
path: root/binutils/nm.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2020-02-25 03:30:33 -0800
committerH.J. Lu <hjl.tools@gmail.com>2020-02-25 03:31:40 -0800
commitecda90163e2b0a6f0be96e3fc262c28820a27211 (patch)
tree7d5371a80bf0df07028f0f107a4d70927040e089 /binutils/nm.c
parent265b467340e5334a682e47a0e1b69a80c4428349 (diff)
downloadbinutils-gdb-ecda90163e2b0a6f0be96e3fc262c28820a27211.tar.gz
Don't call lto-wrapper for ar and ranlib
Since ar and ranlib don't need to know symbol types to work properly, we should avoid calling lto-wrapper for them to speed them up. bfd/ PR binutils/25584 * plugin.c (need_lto_wrapper_p): New. (bfd_plugin_set_program_name): Add an int argument to set need_lto_wrapper_p. (get_lto_wrapper): Return FALSE if need_lto_wrapper_p isn't set. * plugin.h (bfd_plugin_set_program_name): Add an int argument. binutils/ PR binutils/25584 * ar.c (main): Pass 0 to bfd_plugin_set_program_name. * nm.c (main): Pass 1 to bfd_plugin_set_program_name.
Diffstat (limited to 'binutils/nm.c')
-rw-r--r--binutils/nm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/nm.c b/binutils/nm.c
index 0ee3f883865..5b386592a61 100644
--- a/binutils/nm.c
+++ b/binutils/nm.c
@@ -1701,7 +1701,7 @@ main (int argc, char **argv)
xmalloc_set_program_name (program_name);
bfd_set_error_program_name (program_name);
#if BFD_SUPPORTS_PLUGINS
- bfd_plugin_set_program_name (program_name);
+ bfd_plugin_set_program_name (program_name, 1);
#endif
START_PROGRESS (program_name, 0);