aboutsummaryrefslogtreecommitdiff
path: root/ld/lexsup.c
diff options
context:
space:
mode:
Diffstat (limited to 'ld/lexsup.c')
-rw-r--r--ld/lexsup.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ld/lexsup.c b/ld/lexsup.c
index 8cf96eb..4f6a77b 100644
--- a/ld/lexsup.c
+++ b/ld/lexsup.c
@@ -1330,10 +1330,12 @@ parse_args (unsigned argc, char **argv)
if (optarg != NULL)
{
char *end;
- int level = strtoul (optarg, &end, 0);
+ int level ATTRIBUTE_UNUSED = strtoul (optarg, &end, 0);
if (*end)
einfo (_("%P%F: invalid number `%s'\n"), optarg);
+#ifdef ENABLE_PLUGINS
report_plugin_symbols = level > 1;
+#endif /* ENABLE_PLUGINS */
}
break;
case 'v':