2011-08-19 Andrew Stubbs <ams@codesourcery.com>
[official-gcc.git] / gcc / gcc.h
blob091d9c862165113c551746608995d20559f28fff
1 /* Header file for modules that link with gcc.c
2 Copyright (C) 1999, 2000, 2001, 2003, 2004, 2007, 2008, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #ifndef GCC_GCC_H
22 #define GCC_GCC_H
24 #include "version.h"
25 #include "diagnostic-core.h"
27 /* The mapping of a spec function name to the C function that
28 implements it. */
29 struct spec_function
31 const char *name;
32 const char *(*func) (int, const char **);
35 /* These are exported by gcc.c. */
36 extern int do_spec (const char *);
37 extern void record_temp_file (const char *, int, int);
38 extern void pfatal_with_name (const char *) ATTRIBUTE_NORETURN;
39 extern void set_input (const char *);
41 /* Spec files linked with gcc.c must provide definitions for these. */
43 /* Called before processing to change/add/remove arguments. */
44 extern void lang_specific_driver (struct cl_decoded_option **,
45 unsigned int *, int *);
47 /* Called before linking. Returns 0 on success and -1 on failure. */
48 extern int lang_specific_pre_link (void);
50 extern int n_infiles;
52 /* Number of extra output files that lang_specific_pre_link may generate. */
53 extern int lang_specific_extra_outfiles;
55 /* A vector of corresponding output files is made up later. */
57 extern const char **outfiles;
59 #endif /* ! GCC_GCC_H */