]>
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, 2002
3 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
7 Bison is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 Bison is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Bison; see the file COPYING. If not, write to the Free
19 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
33 int locations_flag
= 0;
34 int no_lines_flag
= 0;
35 int no_parser_flag
= 0;
36 int token_table_flag
= 0;
38 int yacc_flag
= 0; /* for -y */
42 const char *skeleton
= NULL
;
43 const char *include
= NULL
;
45 extern char *program_name
;
47 /*---------------------------.
48 | Display the help message. |
49 `---------------------------*/
54 /* Some efforts were made to ease the translators' task, please
57 GNU bison generates parsers for LALR(1) grammars.\n"), stream
);
61 Usage: %s [OPTION]... FILE\n"), program_name
);
65 If a long option shows an argument as mandatory, then it is mandatory\n\
66 for the equivalent short option also. Similarly for optional arguments.\n"),
72 -h, --help display this help and exit\n\
73 -V, --version output version information and exit\n\
74 -y, --yacc emulate POSIX yacc\n"), stream
);
79 -S, --skeleton=FILE specify the skeleton to use\n\
80 -t, --debug instrument the parser for debugging\n\
81 --locations enable locations computation\n\
82 -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\
83 -l, --no-lines don't generate `#line' directives\n\
84 -n, --no-parser generate the tables only\n\
85 -k, --token-table include a table of token names\n\
91 -d, --defines also produce a header file\n\
92 -v, --verbose also produce an explanation of the automaton\n\
93 -b, --file-prefix=PREFIX specify a PREFIX for output files\n\
94 -o, --output=FILE leave output to FILE\n\
95 -g, --graph also produce a VCG description of the automaton\n\
100 Report bugs to <bug-bison@gnu.org>.\n"), stream
);
104 /*------------------------------.
105 | Display the version message. |
106 `------------------------------*/
109 version (FILE *stream
)
111 /* Some efforts were made to ease the translators' task, please
113 fprintf (stream
, _("bison (GNU Bison) %s"), VERSION
);
115 fputs (_("Written by Robert Corbett and Richard Stallman.\n"), stream
);
119 _("Copyright (C) %d Free Software Foundation, Inc.\n"), 2002);
122 This is free software; see the source for copying conditions. There is NO\n\
123 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
129 /*----------------------.
130 | Process the options. |
131 `----------------------*/
133 /* Under DOS, there is no difference on the case. This can be
134 troublesome when looking for `.tab' etc. */
136 # define AS_FILE_NAME(File) (strlwr (File), (File))
138 # define AS_FILE_NAME(File) (File)
142 getargs (int argc
, char *argv
[])
146 struct option
*longopts
= long_option_table_new ();
147 while ((c
= getopt_long (argc
, argv
, shortopts
, longopts
, NULL
)) != EOF
)
151 /* Certain long options cause getopt_long to return 0. */
167 /* Here, the -g and --graph=FILE options are differentiated. */
169 spec_graph_file
= AS_FILE_NAME (optarg
);
177 skeleton
= AS_FILE_NAME (optarg
);
181 include
= AS_FILE_NAME (optarg
);
185 /* Here, the -d and --defines options are differentiated. */
188 spec_defines_file
= AS_FILE_NAME (optarg
);
196 token_table_flag
= 1;
200 fatal (_("`%s' is no longer supported"), "--raw");
212 spec_outfile
= AS_FILE_NAME (optarg
);
216 spec_file_prefix
= AS_FILE_NAME (optarg
);
220 spec_name_prefix
= optarg
;
224 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
233 fprintf (stderr
, _("%s: no grammar file given\n"), program_name
);
236 if (optind
< argc
- 1)
237 fprintf (stderr
, _("%s: extra arguments ignored after `%s'\n"),
238 program_name
, argv
[optind
]);
240 infile
= argv
[optind
];