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