]> git.saurik.com Git - bison.git/blame - src/getargs.c
Fix the `GAWK Grammar' failure.
[bison.git] / src / getargs.c
CommitLineData
9f306f2a 1/* Parse command line arguments for bison.
cd5bd6ac 2 Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.
3d8fc6ca 3
9f306f2a 4 This file is part of Bison, the GNU Compiler Compiler.
3d8fc6ca 5
9f306f2a
AD
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)
9 any later version.
3d8fc6ca 10
9f306f2a
AD
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.
3d8fc6ca 15
9f306f2a
AD
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
19 02111-1307, USA. */
3d8fc6ca
RS
20
21#include <stdio.h>
22#include "getopt.h"
23#include "system.h"
24#include "files.h"
b0ce6046 25#include "complain.h"
ceed8467 26#include "getargs.h"
82b6d266
PB
27#include "xalloc.h"
28#include "options.h"
3d8fc6ca 29
89cab50d
AD
30int debug_flag = 0;
31int defines_flag = 0;
32int locations_flag = 0;
33int no_lines_flag = 0;
34int no_parser_flag = 0;
89cab50d
AD
35int token_table_flag = 0;
36int verbose_flag = 0;
89cab50d 37int yacc_flag = 0; /* for -y */
22c2cbc0 38int graph_flag = 0;
9bfe901c 39int trace_flag = 0;
d2729d44 40
b0ce6046 41const char *skeleton = NULL;
f6bd5427 42const char *include = NULL;
b0ce6046 43
cbd8ffc5 44extern char *program_name;
3d8fc6ca 45
9f306f2a
AD
46/*---------------------------.
47| Display the help message. |
48`---------------------------*/
e79137ac 49
4a120d45 50static void
d2729d44 51usage (FILE *stream)
cbd8ffc5 52{
9f306f2a
AD
53 /* Some efforts were made to ease the translators' task, please
54 continue. */
a0f6b076
AD
55 fputs (_("\
56GNU bison generates parsers for LALR(1) grammars.\n"), stream);
9f306f2a
AD
57 putc ('\n', stream);
58
59 fprintf (stream, _("\
60Usage: %s [OPTION]... FILE\n"), program_name);
61 putc ('\n', stream);
62
63 fputs (_("\
64If a long option shows an argument as mandatory, then it is mandatory\n\
65for the equivalent short option also. Similarly for optional arguments.\n"),
66 stream);
67 putc ('\n', stream);
68
a0f6b076 69 fputs (_("\
9f306f2a
AD
70Operation modes:\n\
71 -h, --help display this help and exit\n\
72 -V, --version output version information and exit\n\
a0f6b076 73 -y, --yacc emulate POSIX yacc\n"), stream);
9f306f2a
AD
74 putc ('\n', stream);
75
a0f6b076 76 fputs (_("\
9f306f2a 77Parser:\n\
cd5bd6ac 78 -S, --skeleton=FILE specify the skeleton to use\n\
9f306f2a 79 -t, --debug instrument the parser for debugging\n\
89cab50d 80 --locations enable locations computation\n\
9f306f2a
AD
81 -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\
82 -l, --no-lines don't generate `#line' directives\n\
83 -n, --no-parser generate the tables only\n\
9f306f2a 84 -k, --token-table include a table of token names\n\
a0f6b076 85"), stream);
9f306f2a
AD
86 putc ('\n', stream);
87
a0f6b076 88 fputs (_("\
9f306f2a
AD
89Output:\n\
90 -d, --defines also produce a header file\n\
91 -v, --verbose also produce an explanation of the automaton\n\
92 -b, --file-prefix=PREFIX specify a PREFIX for output files\n\
951366c1
AD
93 -o, --output=FILE leave output to FILE\n\
94 -g, --graph also produce a VCG description of the automaton\n\
95"), stream);
9f306f2a
AD
96 putc ('\n', stream);
97
a0f6b076
AD
98 fputs (_("\
99Report bugs to <bug-bison@gnu.org>.\n"), stream);
cbd8ffc5
DM
100}
101
e79137ac
AD
102
103/*------------------------------.
104| Display the version message. |
105`------------------------------*/
106
107static void
108version (FILE *stream)
109{
110 /* Some efforts were made to ease the translators' task, please
111 continue. */
112 fprintf (stream, _("\
113bison (GNU Bison) %s"), VERSION);
114 putc ('\n', stream);
115 putc ('\n', stream);
116
117 fputs (_("\
cd5bd6ac 118Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.\n"),
e79137ac
AD
119 stream);
120
121 fputs (_("\
122This is free software; see the source for copying conditions. There is NO\n\
123warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
124"),
125 stream);
126}
127
128
129/*----------------------.
130| Process the options. |
131`----------------------*/
132
3d8fc6ca 133void
d2729d44 134getargs (int argc, char *argv[])
3d8fc6ca 135{
1916f98e 136 int c;
3d8fc6ca 137
82b6d266 138 create_long_option_table ();
cd5bd6ac
AD
139 while ((c = getopt_long (argc, argv, shortopts, longopts, NULL)) != EOF)
140 switch (c)
141 {
142 case 0:
143 /* Certain long options cause getopt_long to return 0. */
144 break;
145
146 case 'y':
147 yacc_flag = 1;
148 break;
149
150 case 'h':
151 usage (stdout);
152 exit (0);
153
154 case 'V':
155 version (stdout);
156 exit (0);
157
22c2cbc0 158 case 'g':
342b8b6e 159 /* Here, the -g and --graph=FILE options are differentiated. */
22c2cbc0 160 graph_flag = 1;
342b8b6e 161 spec_graph_file = optarg;
22c2cbc0
AD
162 break;
163
cd5bd6ac
AD
164 case 'v':
165 verbose_flag = 1;
166 break;
167
168 case 'S':
169 skeleton = optarg;
170 break;
171
f6bd5427
MA
172 case 'I':
173 include = optarg;
174 break;
175
cd5bd6ac 176 case 'd':
342b8b6e 177 /* Here, the -d and --defines options are differentiated. */
cd5bd6ac 178 defines_flag = 1;
342b8b6e 179 spec_defines_file = optarg;
cd5bd6ac
AD
180 break;
181
182 case 'l':
183 no_lines_flag = 1;
184 break;
185
186 case 'k':
187 token_table_flag = 1;
188 break;
189
190 case 'r':
62ab6972 191 fatal (_("`%s' is no longer supported"), "--raw");
cd5bd6ac
AD
192 break;
193
194 case 'n':
195 no_parser_flag = 1;
196 break;
197
198 case 't':
199 debug_flag = 1;
200 break;
201
202 case 'o':
203 spec_outfile = optarg;
204 break;
205
206 case 'b':
207 spec_file_prefix = optarg;
208 break;
209
210 case 'p':
211 spec_name_prefix = optarg;
212 break;
213
214 default:
215 fprintf (stderr, _("Try `%s --help' for more information.\n"),
216 program_name);
217 exit (1);
218 }
3d8fc6ca 219
82b6d266 220 XFREE (longopts);
3d8fc6ca
RS
221 if (optind == argc)
222 {
e79137ac
AD
223 fprintf (stderr, _("%s: no grammar file given\n"), program_name);
224 exit (1);
3d8fc6ca
RS
225 }
226 if (optind < argc - 1)
e79137ac
AD
227 fprintf (stderr, _("%s: extra arguments ignored after `%s'\n"),
228 program_name, argv[optind]);
3d8fc6ca
RS
229
230 infile = argv[optind];
231}