diff options
author | Alan Modra <amodra@gmail.com> | 2012-10-22 13:33:49 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2012-10-22 13:33:49 +0000 |
commit | 0e86e20e046ab38f95fb405f91a7b3a1ec7d7aba (patch) | |
tree | c2a68a3c1a476de3ae7a0aed1995bac6e3bed1ec /ld/ldlex.h | |
parent | ef8e09a0817e4636f5523afc2feac00a4f173977 (diff) | |
download | gdb-0e86e20e046ab38f95fb405f91a7b3a1ec7d7aba.zip gdb-0e86e20e046ab38f95fb405f91a7b3a1ec7d7aba.tar.gz gdb-0e86e20e046ab38f95fb405f91a7b3a1ec7d7aba.tar.bz2 |
include/
PR ld/14426
* bfdlink.h (bfd_link_info): Add ignore_hash.
ld/
PR ld/14426
* ldlex.h (option_values): Add OPTION_IGNORE_UNRESOLVED_SYMBOL.
* lexsup.c (parse_args): Likewise.
(ld_options): Describe --ignore-unresolved-symbol.
* ldmain.h (add_ignoresym): Declare.
* ldmain.c (add_ignoresym): New function, extracted from..
(undefined_symbol): ..here. Return if the symbol is in ignore_hash.
(constructor_callback): Don't use global link_info here.
(reloc_overflow): Likewise.
Diffstat (limited to 'ld/ldlex.h')
-rw-r--r-- | ld/ldlex.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -135,6 +135,7 @@ enum option_values #endif /* ENABLE_PLUGINS */ OPTION_DEFAULT_SCRIPT, OPTION_PRINT_OUTPUT_FORMAT, + OPTION_IGNORE_UNRESOLVED_SYMBOL, }; /* The initial parser states. */ |