]>
git.saurik.com Git - bison.git/blob - src/getargs.c
1 /* Parse command line arguments for bison,
2 Copyright (C) 1984, 1986, 1989, 1992 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
7 it 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,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU 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
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
33 int rawtoknumflag
= 0;
34 char *spec_name_prefix
; /* for -p. */
35 char *spec_file_prefix
; /* for -b. */
36 extern int fixed_outfiles
;/* for -y */
38 void usage
PARAMS((FILE *));
39 void getargs
PARAMS((int, char *[]));
41 extern char *program_name
;
43 extern void warns
PARAMS((char *, char *)); /* main.c */
45 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},
69 Usage: %s [-dhklntvyV] [-b file-prefix] [-o outfile] [-p name-prefix]\n\
70 [--debug] [--defines] [--fixed-output-files] [--no-lines]\n\
71 [--verbose] [--version] [--help] [--yacc]\n\
72 [--no-parser] [--token-table]\n\
73 [--file-prefix=prefix] [--name-prefix=prefix]\n\
74 [--output=outfile] grammar-file\n\n\
75 Report bugs to bug-bison@gnu.org\n"),
80 getargs (int argc
, char *argv
[])
92 while ((c
= getopt_long (argc
, argv
, "yvdhrltknVo:b:p:", longopts
, (int *)0))
98 /* Certain long options cause getopt_long to return 0. */
110 printf ("%s\n", VERSION_STRING
);
142 spec_outfile
= optarg
;
146 spec_file_prefix
= optarg
;
150 spec_name_prefix
= optarg
;
161 fprintf(stderr
, _("%s: no grammar file given\n"), program_name
);
164 if (optind
< argc
- 1)
165 fprintf(stderr
, _("%s: extra arguments ignored after '%s'\n"),
166 program_name
, argv
[optind
]);
168 infile
= argv
[optind
];