diff options
Diffstat (limited to 'ld/ldmain.c')
-rw-r--r-- | ld/ldmain.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ld/ldmain.c b/ld/ldmain.c index 62d891cc183..ed0abd6639a 100644 --- a/ld/ldmain.c +++ b/ld/ldmain.c @@ -273,6 +273,14 @@ main (argc, argv) einfo (_("%P%F: -r and -shared may not be used together\n")); } + if (! link_info.shared) + { + if (command_line.filter_shlib) + einfo ("%P%F: -F may not be used without -shared\n")); + if (command_line.auxiliary_filters) + einfo ("%P%F: -f may not be used without -shared\n")); + } + /* Treat ld -r -s as ld -r -S -x (i.e., strip all local symbols). I don't see how else this can be handled, since in this case we must preserve all externally visible symbols. */ |