summaryrefslogtreecommitdiff
path: root/ld/ld.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2007-05-03 09:24:16 +0000
committerAlan Modra <amodra@bigpond.net.au>2007-05-03 09:24:16 +0000
commitae629848ac92b9c71ec85bb946fa8ddde085c3d9 (patch)
tree7d81611a970a784e25ddd630f197eaec6b565b1a /ld/ld.h
parent4880fe944ce8a60ac304b43dc6a6219299288331 (diff)
downloadbinutils-redhat-ae629848ac92b9c71ec85bb946fa8ddde085c3d9.tar.gz
* ld.texinfo (--no-warn-search-mismatch): Document.
* ldfile.c (ldfile_try_open_bfd): Don't warn about skipping incompatible libraries if --no-warn-search-mismatch. * ld.h (args_type): Add warn_search_mismatch. * ldmain.c (main): Init it. * lexsup.c (enum option_values): Add OPTION_NO_WARN_SEARCH_MISMATCH. (ld_options): Add entry for --no-warn-search-mismatch. (parse_args): Handle OPTION_NO_WARN_SEARCH_MISMATCH.
Diffstat (limited to 'ld/ld.h')
-rw-r--r--ld/ld.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ld/ld.h b/ld/ld.h
index f049c079b6..96b9b8d434 100644
--- a/ld/ld.h
+++ b/ld/ld.h
@@ -177,6 +177,10 @@ typedef struct {
files. */
bfd_boolean warn_mismatch;
+ /* Warn on attempting to open an incompatible library during a library
+ search. */
+ bfd_boolean warn_search_mismatch;
+
/* Name of shared object whose symbol table should be filtered with
this shared object. From the --filter option. */
char *filter_shlib;