]>
git.saurik.com Git - bison.git/blob - src/getargs.c
1 /* Parse command line arguments for bison.
2 Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
6 Bison is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 Bison is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with Bison; see the file COPYING. If not, write to the Free
18 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
32 int locations_flag
= 0;
33 int no_lines_flag
= 0;
34 int no_parser_flag
= 0;
35 int token_table_flag
= 0;
37 int statistics_flag
= 0;
38 int yacc_flag
= 0; /* for -y */
41 const char *skeleton
= NULL
;
43 extern char *program_name
;
45 /*---------------------------.
46 | Display the help message. |
47 `---------------------------*/
52 /* Some efforts were made to ease the translators' task, please
55 GNU bison generates parsers for LALR(1) grammars.\n"), stream
);
59 Usage: %s [OPTION]... FILE\n"), program_name
);
63 If a long option shows an argument as mandatory, then it is mandatory\n\
64 for the equivalent short option also. Similarly for optional arguments.\n"),
70 -h, --help display this help and exit\n\
71 -V, --version output version information and exit\n\
72 -y, --yacc emulate POSIX yacc\n"), stream
);
77 -S, --skeleton=FILE specify the skeleton to use\n\
78 -t, --debug instrument the parser for debugging\n\
79 --locations enable locations computation\n\
80 -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\
81 -l, --no-lines don't generate `#line' directives\n\
82 -n, --no-parser generate the tables only\n\
83 -k, --token-table include a table of token names\n\
89 -d, --defines also produce a header file\n\
90 -v, --verbose also produce an explanation of the automaton\n\
91 -b, --file-prefix=PREFIX specify a PREFIX for output files\n\
92 -o, --output-file=FILE leave output to FILE\n\
93 -g, --graph also produce a VCG graph description of the \
94 automaton\n"), stream
);
98 Report bugs to <bug-bison@gnu.org>.\n"), stream
);
102 /*------------------------------.
103 | Display the version message. |
104 `------------------------------*/
107 version (FILE *stream
)
109 /* Some efforts were made to ease the translators' task, please
111 fprintf (stream
, _("\
112 bison (GNU Bison) %s"), VERSION
);
117 Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.\n"),
121 This is free software; see the source for copying conditions. There is NO\n\
122 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
128 /*----------------------.
129 | Process the options. |
130 `----------------------*/
133 getargs (int argc
, char *argv
[])
137 create_long_option_table ();
138 while ((c
= getopt_long (argc
, argv
, shortopts
, longopts
, NULL
)) != EOF
)
142 /* Certain long options cause getopt_long to return 0. */
158 /* Here, the -g and --graph=FILE options are differentiated. */
160 spec_graph_file
= optarg
;
172 /* Here, the -d and --defines options are differentiated. */
174 spec_defines_file
= optarg
;
182 token_table_flag
= 1;
186 fatal (_("`%s' is no longer supported"), "--raw");
198 spec_outfile
= optarg
;
202 spec_file_prefix
= optarg
;
206 spec_name_prefix
= optarg
;
210 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
218 fprintf (stderr
, _("%s: no grammar file given\n"), program_name
);
221 if (optind
< argc
- 1)
222 fprintf (stderr
, _("%s: extra arguments ignored after `%s'\n"),
223 program_name
, argv
[optind
]);
225 infile
= argv
[optind
];