diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-07-20 03:25:10 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-07-20 03:25:10 +0000 |
commit | e0ee487bb566f047bbc43dee18e81bab14cba096 (patch) | |
tree | 9d48cd80dcbe6c6a26c5b72750605cbd0c5893d8 /ld/lexsup.c | |
parent | 9bfcb6d6894b9224f4b8f55c4f6f14dea93e28ad (diff) | |
download | gdb-e0ee487bb566f047bbc43dee18e81bab14cba096.zip gdb-e0ee487bb566f047bbc43dee18e81bab14cba096.tar.gz gdb-e0ee487bb566f047bbc43dee18e81bab14cba096.tar.bz2 |
2000-07-19 H.J. Lu <hjl@gnu.org>
* emulparams/elf32mcore.sh (PARSE_AND_LIST_ARGS): Removed.
(PARSE_AND_LIST_PROLOGUE): New.
(PARSE_AND_LIST_LONGOPTS): Likewise.
(PARSE_AND_LIST_OPTIONS): Likewise.
(PARSE_AND_LIST_ARGS_CASES): Likewise.
* ldmain.c (main): Clear link_info.flags and link_info.flags_1.
* lexsup.c (ld_options): Comment out 'z'.
(parse_args): Likewise.
* emultempl/elf32.em: Include "elf/common.h".
(gld_${EMULATION_NAME}_parse_args): Defined. Handle some -z
options.
(gld_${EMULATION_NAME}_list_options): Likewise.
* ld.texinfo: Add documentation for the recognized -z options.
Diffstat (limited to 'ld/lexsup.c')
-rw-r--r-- | ld/lexsup.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ld/lexsup.c b/ld/lexsup.c index a018f28..e2cd2d1 100644 --- a/ld/lexsup.c +++ b/ld/lexsup.c @@ -237,8 +237,10 @@ static const struct ld_option ld_options[] = 'y', N_("SYMBOL"), N_("Trace mentions of SYMBOL"), TWO_DASHES }, { {NULL, required_argument, NULL, '\0'}, 'Y', N_("PATH"), N_("Default search path for Solaris compatibility"), ONE_DASH }, +#if 0 { {NULL, required_argument, NULL, '\0'}, 'z', N_("KEYWORD"), N_("Ignored for Solaris compatibility"), ONE_DASH }, +#endif { {"start-group", no_argument, NULL, '('}, '(', NULL, N_("Start a group"), TWO_DASHES }, { {"end-group", no_argument, NULL, ')'}, @@ -994,11 +996,13 @@ the GNU General Public License. This program has absolutely no warranty.\n")); case 'y': add_ysym (optarg); break; +#if 0 case 'z': /* We accept and ignore this option for Solaris compatibility. Actually, on Solaris, optarg is not ignored. Someday we should handle it correctly. FIXME. */ break; +#endif case OPTION_SPLIT_BY_RELOC: config.split_by_reloc = strtoul (optarg, NULL, 0); break; |