OSDN Git Service

1998-12-07 Zack Weinberg <zack@rabi.phys.columbia.edu>
[pf3gnuchains/gcc-fork.git] / gcc / cppmain.c
1 /* CPP main program, using CPP Library.
2    Copyright (C) 1995, 1997 Free Software Foundation, Inc.
3    Written by Per Bothner, 1994-95.
4
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option) any
8 later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19  In other words, you are welcome to use, share and improve this program.
20  You are forbidden to forbid anyone else to use, share and improve
21  what you give them.   Help stamp out software-hoarding!  */
22
23 #ifndef EMACS
24 #include "config.h"
25 #include "system.h"
26 #else
27 #include <stdio.h>
28
29 extern char *getenv ();
30 #endif /* not EMACS */
31
32 #include "cpplib.h"
33
34 char *progname;
35
36 cpp_reader parse_in;
37 cpp_options options;
38
39 #ifdef abort
40 /* More 'friendly' abort that prints the line and file.
41    config.h can #define abort fancy_abort if you like that sort of thing.  */
42 void
43 fatal (s)
44      char *s;
45 {
46   fputs (s, stderr);
47   exit (FATAL_EXIT_CODE);
48 }
49
50 void
51 fancy_abort ()
52 {
53   fatal ("Internal gcc abort.");
54 }
55 #endif
56
57 \f
58 int
59 main (argc, argv)
60      int argc;
61      char **argv;
62 {
63   char *p;
64   int argi = 1;  /* Next argument to handle.  */
65   struct cpp_options *opts = &options;
66
67   p = argv[0] + strlen (argv[0]);
68   while (p != argv[0] && p[-1] != '/') --p;
69   progname = p;
70
71   cpp_reader_init (&parse_in);
72   parse_in.opts = opts;
73
74   cpp_options_init (opts);
75   
76   argi += cpp_handle_options (&parse_in, argc - argi , argv + argi);
77   if (argi < argc && ! CPP_FATAL_ERRORS (&parse_in))
78     cpp_fatal (&parse_in, "Invalid option `%s'", argv[argi]);
79   if (CPP_FATAL_ERRORS (&parse_in))
80     exit (FATAL_EXIT_CODE);
81       
82   parse_in.show_column = 1;
83
84   if (! cpp_start_read (&parse_in, opts->in_fname))
85     exit (FATAL_EXIT_CODE);
86
87   /* Now that we know the input file is valid, open the output.  */
88
89   if (!opts->out_fname || !strcmp (opts->out_fname, ""))
90     opts->out_fname = "stdout";
91   else if (! freopen (opts->out_fname, "w", stdout))
92     cpp_pfatal_with_name (&parse_in, opts->out_fname);
93
94   for (;;)
95     {
96       enum cpp_token kind;
97       if (! opts->no_output)
98         {
99           fwrite (parse_in.token_buffer, 1, CPP_WRITTEN (&parse_in), stdout);
100         }
101       CPP_SET_WRITTEN (&parse_in, 0);
102       kind = cpp_get_token (&parse_in);
103       if (kind == CPP_EOF)
104         break;
105     }
106
107   cpp_finish (&parse_in);
108
109   if (parse_in.errors)
110     exit (FATAL_EXIT_CODE);
111   exit (SUCCESS_EXIT_CODE);
112 }