Small cleanups before making collect2 use collect-utils.
[gcc.git] / gcc / collect-utils.h
1 /* Utility functions used by tools like collect2 and lto-wrapper.
2 Copyright (C) 2009-2014 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 /* Provided in collect-utils.c. */
21 extern void notice (const char *, ...)
22 __attribute__ ((format (printf, 1, 2)));
23 extern void fatal_signal (int);
24
25 extern struct pex_obj *collect_execute (char **);
26 extern int collect_wait (const char *, struct pex_obj *);
27 extern void do_wait (const char *, struct pex_obj *);
28 extern void fork_execute (char **);
29 extern void utils_cleanup (void);
30
31 extern bool debug;
32 extern bool verbose;
33 extern bool save_temps;
34
35 /* Provided by the tool itself. */
36
37 /* The name of the tool, printed in error messages. */
38 extern const char tool_name[];
39 /* Called by utils_cleanup. */
40 extern void tool_cleanup (void);
41 extern void maybe_unlink (const char *);