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