annotate gcc/cp/lang-specs.h @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Definitions for specs for C++.
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
2 Copyright (C) 1995-2020 Free Software Foundation, Inc.
111
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 This file is part of GCC.
kono
parents:
diff changeset
5
kono
parents:
diff changeset
6 GCC is free software; you can redistribute it and/or modify
kono
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
kono
parents:
diff changeset
8 the Free Software Foundation; either version 3, or (at your option)
kono
parents:
diff changeset
9 any later version.
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 GCC is distributed in the hope that it will be useful,
kono
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
kono
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
kono
parents:
diff changeset
14 GNU General Public License for more details.
kono
parents:
diff changeset
15
kono
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
kono
parents:
diff changeset
17 along with GCC; see the file COPYING3. If not see
kono
parents:
diff changeset
18 <http://www.gnu.org/licenses/>. */
kono
parents:
diff changeset
19
kono
parents:
diff changeset
20 /* This is the contribution to the `default_compilers' array in gcc.c for
kono
parents:
diff changeset
21 g++. */
kono
parents:
diff changeset
22
kono
parents:
diff changeset
23 #ifndef CPLUSPLUS_CPP_SPEC
kono
parents:
diff changeset
24 #define CPLUSPLUS_CPP_SPEC 0
kono
parents:
diff changeset
25 #endif
kono
parents:
diff changeset
26
kono
parents:
diff changeset
27 {".cc", "@c++", 0, 0, 0},
kono
parents:
diff changeset
28 {".cp", "@c++", 0, 0, 0},
kono
parents:
diff changeset
29 {".cxx", "@c++", 0, 0, 0},
kono
parents:
diff changeset
30 {".cpp", "@c++", 0, 0, 0},
kono
parents:
diff changeset
31 {".c++", "@c++", 0, 0, 0},
kono
parents:
diff changeset
32 {".C", "@c++", 0, 0, 0},
kono
parents:
diff changeset
33 {".CPP", "@c++", 0, 0, 0},
kono
parents:
diff changeset
34 {".H", "@c++-header", 0, 0, 0},
kono
parents:
diff changeset
35 {".hpp", "@c++-header", 0, 0, 0},
kono
parents:
diff changeset
36 {".hp", "@c++-header", 0, 0, 0},
kono
parents:
diff changeset
37 {".hxx", "@c++-header", 0, 0, 0},
kono
parents:
diff changeset
38 {".h++", "@c++-header", 0, 0, 0},
kono
parents:
diff changeset
39 {".HPP", "@c++-header", 0, 0, 0},
kono
parents:
diff changeset
40 {".tcc", "@c++-header", 0, 0, 0},
kono
parents:
diff changeset
41 {".hh", "@c++-header", 0, 0, 0},
kono
parents:
diff changeset
42 {"@c++-header",
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
43 "%{E|M|MM:cc1plus -E %(cpp_options) %2 %(cpp_debug_options)}"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
44 "%{!E:%{!M:%{!MM:"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
45 " %{save-temps*|no-integrated-cpp:cc1plus -E"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
46 " %(cpp_options) %2 -o %{save-temps*:%b.ii} %{!save-temps*:%g.ii} \n}"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
47 " cc1plus %{save-temps*|no-integrated-cpp:-fpreprocessed"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
48 " %{save-temps*:%b.ii} %{!save-temps*:%g.ii}}"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
49 " %{!save-temps*:%{!no-integrated-cpp:%(cpp_unique_options)}}"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
50 " %(cc1_options) %2"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
51 " %{!fsyntax-only:%{!S:-o %g.s}"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
52 " %{!fdump-ada-spec*:%{!o*:--output-pch=%i.gch}"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
53 " %W{o*:--output-pch=%*}}%V}}}}",
111
kono
parents:
diff changeset
54 CPLUSPLUS_CPP_SPEC, 0, 0},
kono
parents:
diff changeset
55 {"@c++",
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
56 "%{E|M|MM:cc1plus -E %(cpp_options) %2 %(cpp_debug_options)}"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
57 "%{!E:%{!M:%{!MM:"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
58 " %{save-temps*|no-integrated-cpp:cc1plus -E"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
59 " %(cpp_options) %2 -o %{save-temps*:%b.ii} %{!save-temps*:%g.ii} \n}"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
60 " cc1plus %{save-temps*|no-integrated-cpp:-fpreprocessed"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
61 " %{save-temps*:%b.ii} %{!save-temps*:%g.ii}}"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
62 " %{!save-temps*:%{!no-integrated-cpp:%(cpp_unique_options)}}"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
63 " %(cc1_options) %2"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
64 " %{!fsyntax-only:%(invoke_as)}}}}",
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
65 CPLUSPLUS_CPP_SPEC, 0, 0},
111
kono
parents:
diff changeset
66 {".ii", "@c++-cpp-output", 0, 0, 0},
kono
parents:
diff changeset
67 {"@c++-cpp-output",
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
68 "%{!E:%{!M:%{!MM:"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
69 " cc1plus -fpreprocessed %i %(cc1_options) %2"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
70 " %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},