]>
git.saurik.com Git - bison.git/blob - src/getargs.c
1 /* Parse command line arguments for bison.
2 Copyright (C) 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
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)
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.
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
27 char *spec_file_prefix
; /* for -b. */
28 char *spec_name_prefix
; /* for -p. */
34 int rawtoknumflag
= 0;
38 extern int fixed_outfiles
;/* for -y */
40 extern char *program_name
;
42 extern void warns
PARAMS((char *, char *)); /* main.c */
43 extern void getargs
PARAMS((int argc
, char *[]));
45 static struct option longopts
[] =
47 {"debug", 0, &debugflag
, 1},
48 {"defines", 0, &definesflag
, 1},
49 {"file-prefix", 1, 0, 'b'},
50 {"fixed-output-files", 0, &fixed_outfiles
, 1},
52 {"name-prefix", 1, 0, 'p'}, /* was 'a'; apparently unused -wjh */
53 {"no-lines", 0, &nolinesflag
, 1},
54 {"no-parser", 0, &noparserflag
, 1},
55 {"output", 1, 0, 'o'},
56 {"output-file", 1, 0, 'o'},
57 {"raw", 0, &rawtoknumflag
, 1},
58 {"token-table", 0, &toknumflag
, 1},
59 {"verbose", 0, &verboseflag
, 1},
60 {"version", 0, 0, 'V'},
61 {"yacc", 0, &fixed_outfiles
, 1},
65 /*---------------------------.
66 | Display the help message. |
67 `---------------------------*/
72 /* Some efforts were made to ease the translators' task, please
75 GNU bison generates parsers for LALR(1) grammars.\n"), stream
);
79 Usage: %s [OPTION]... FILE\n"), program_name
);
83 If a long option shows an argument as mandatory, then it is mandatory\n\
84 for the equivalent short option also. Similarly for optional arguments.\n"),
90 -h, --help display this help and exit\n\
91 -V, --version output version information and exit\n\
92 -y, --yacc emulate POSIX yacc\n"), stream
);
97 -t, --debug instrument the parser for debugging\n\
98 -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n\
99 -l, --no-lines don't generate `#line' directives\n\
100 -n, --no-parser generate the tables only\n\
101 -r, --raw number the tokens from 3\n\
102 -k, --token-table include a table of token names\n\
108 -d, --defines also produce a header file\n\
109 -v, --verbose also produce an explanation of the automaton\n\
110 -b, --file-prefix=PREFIX specify a PREFIX for output files\n\
111 -o, --output-file=FILE leave output to FILE\n"), stream
);
115 Report bugs to <bug-bison@gnu.org>.\n"), stream
);
119 /*------------------------------.
120 | Display the version message. |
121 `------------------------------*/
124 version (FILE *stream
)
126 /* Some efforts were made to ease the translators' task, please
128 fprintf (stream
, _("\
129 bison (GNU Bison) %s"), VERSION
);
134 Copyright (C) 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.\n"),
138 This is free software; see the source for copying conditions. There is NO\n\
139 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
145 /*----------------------.
146 | Process the options. |
147 `----------------------*/
150 getargs (int argc
, char *argv
[])
162 while ((c
= getopt_long (argc
, argv
, "yvdhrltknVo:b:p:", longopts
, (int *)0))
168 /* Certain long options cause getopt_long to return 0. */
212 spec_outfile
= optarg
;
216 spec_file_prefix
= optarg
;
220 spec_name_prefix
= optarg
;
231 fprintf (stderr
, _("%s: no grammar file given\n"), program_name
);
234 if (optind
< argc
- 1)
235 fprintf (stderr
, _("%s: extra arguments ignored after `%s'\n"),
236 program_name
, argv
[optind
]);
238 infile
= argv
[optind
];