* Makefile.in: Rename cpp to cpp0, tradcpp to tradcpp0, and
[official-gcc.git] / gcc / cp / lang-specs.h
blob9c4e308611d514c17dedb16842091e06d2a41d99
1 /* Definitions for specs for C++.
2 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* This is the contribution to the `default_compilers' array in gcc.c for
23 g++. */
25 {".cc", "@c++"},
26 {".cp", "@c++"},
27 {".cxx", "@c++"},
28 {".cpp", "@c++"},
29 {".c++", "@c++"},
30 {".C", "@c++"},
31 {"@c++",
32 #if USE_CPPLIB
33 "%{E|M|MM:cpp0 -lang-c++ %{!no-gcc:-D__GNUG__=%v1}\
34 %{fnew-abi:-D__GXX_ABI_VERSION=100}\
35 %{ansi:-trigraphs -$ -D__STRICT_ANSI__} %(cpp_options)}\
36 %{!E:%{!M:%{!MM:cc1plus -lang-c++ %{!no-gcc:-D__GNUG__=%v1}\
37 %{fnew-abi:-D__GXX_ABI_VERSION=100}\
38 %{ansi:-trigraphs -$ -D__STRICT_ANSI__}\
39 %(cpp_options) %(cc1_options) %{+e*}\
40 %{!S:-o %{|!pipe:%g.s} |\n\
41 as %(asm_options) %{!pipe:%g.s} %A }}}}"
42 #else /* ! USE_CPPLIB */
43 "cpp0 -lang-c++ %{!no-gcc:-D__GNUG__=%v1}\
44 %{fnew-abi:-D__GXX_ABI_VERSION=100}\
45 %{ansi:-trigraphs -$ -D__STRICT_ANSI__} %(cpp_options)\
46 %{!M:%{!MM:%{!E:%{!pipe:%g.ii} |\n\
47 cc1plus %{!pipe:%g.ii} %(cc1_options) %{+e*} %{!S:-o %{|!pipe:%g.s} |\n\
48 as %(asm_options) %{!pipe:%g.s} %A }}}}\n"
49 #endif /* ! USE_CPPLIB */
51 {".ii", "@c++-cpp-output"},
52 {"@c++-cpp-output",
53 "%{!M:%{!MM:%{!E:\
54 cc1plus -fpreprocessed %{!pipe:%g.ii} %(cc1_options) %{+e*}\
55 %{!S:-o %{|!pipe:%g.s} |\n as %(asm_options) %{!pipe:%g.s} %A }}}}"},