1 /* CPP main program, using CPP Library.
2 Copyright (C) 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
3 Written by Per Bothner, 1994-95.
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
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.
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.
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! */
29 extern char *getenv ();
30 #endif /* not EMACS */
41 /* More 'friendly' abort that prints the line and file.
42 config.h can #define abort fancy_abort if you like that sort of thing. */
48 exit (FATAL_EXIT_CODE
);
54 fatal ("Internal gcc abort.");
65 int argi
= 1; /* Next argument to handle. */
66 struct cpp_options
*opts
= &options
;
68 p
= argv
[0] + strlen (argv
[0]);
69 while (p
!= argv
[0] && p
[-1] != '/') --p
;
72 #ifdef HAVE_LC_MESSAGES
73 setlocale (LC_MESSAGES
, "");
75 (void) bindtextdomain (PACKAGE
, localedir
);
76 (void) textdomain (PACKAGE
);
78 cpp_reader_init (&parse_in
);
81 cpp_options_init (opts
);
83 argi
+= cpp_handle_options (&parse_in
, argc
- argi
, argv
+ argi
);
84 if (argi
< argc
&& ! CPP_FATAL_ERRORS (&parse_in
))
85 cpp_fatal (&parse_in
, "Invalid option `%s'", argv
[argi
]);
86 if (CPP_FATAL_ERRORS (&parse_in
))
87 exit (FATAL_EXIT_CODE
);
89 parse_in
.show_column
= 1;
91 if (! cpp_start_read (&parse_in
, opts
->in_fname
))
92 exit (FATAL_EXIT_CODE
);
94 /* Now that we know the input file is valid, open the output. */
96 if (!opts
->out_fname
|| !strcmp (opts
->out_fname
, ""))
97 opts
->out_fname
= "stdout";
98 else if (! freopen (opts
->out_fname
, "w", stdout
))
99 cpp_pfatal_with_name (&parse_in
, opts
->out_fname
);
104 if (! opts
->no_output
)
106 fwrite (parse_in
.token_buffer
, 1, CPP_WRITTEN (&parse_in
), stdout
);
108 CPP_SET_WRITTEN (&parse_in
, 0);
109 kind
= cpp_get_token (&parse_in
);
114 cpp_finish (&parse_in
);
117 exit (FATAL_EXIT_CODE
);
118 exit (SUCCESS_EXIT_CODE
);