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