1 | // Boost compiler configuration selection header file |
2 | |
3 | // (C) Copyright John Maddock 2001 - 2003. |
4 | // (C) Copyright Martin Wille 2003. |
5 | // (C) Copyright Guillaume Melquiond 2003. |
6 | // |
7 | // Distributed under the Boost Software License, Version 1.0. |
8 | // (See accompanying file LICENSE_1_0.txt or copy at |
9 | // http://www.boost.org/LICENSE_1_0.txt) |
10 | |
11 | // See http://www.boost.org/ for most recent version. |
12 | |
13 | // locate which compiler we are using and define |
14 | // BOOST_COMPILER_CONFIG as needed: |
15 | |
16 | #if defined __CUDACC__ |
17 | // NVIDIA CUDA C++ compiler for GPU |
18 | # include "boost/config/compiler/nvcc.hpp" |
19 | |
20 | #endif |
21 | |
22 | #if defined(__GCCXML__) |
23 | // GCC-XML emulates other compilers, it has to appear first here! |
24 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/gcc_xml.hpp" |
25 | |
26 | #elif defined(_CRAYC) |
27 | // EDG based Cray compiler: |
28 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/cray.hpp" |
29 | |
30 | #elif defined __COMO__ |
31 | // Comeau C++ |
32 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/comeau.hpp" |
33 | |
34 | #elif defined(__PATHSCALE__) && (__PATHCC__ >= 4) |
35 | // PathScale EKOPath compiler (has to come before clang and gcc) |
36 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/pathscale.hpp" |
37 | |
38 | #elif defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC) |
39 | // Intel |
40 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/intel.hpp" |
41 | |
42 | #elif defined __clang__ && !defined(__CUDACC__) |
43 | // when using clang and cuda at same time, you want to appear as gcc |
44 | // Clang C++ emulates GCC, so it has to appear early. |
45 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/clang.hpp" |
46 | |
47 | #elif defined __DMC__ |
48 | // Digital Mars C++ |
49 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/digitalmars.hpp" |
50 | |
51 | # elif defined __GNUC__ |
52 | // GNU C++: |
53 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/gcc.hpp" |
54 | |
55 | #elif defined __KCC |
56 | // Kai C++ |
57 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/kai.hpp" |
58 | |
59 | #elif defined __sgi |
60 | // SGI MIPSpro C++ |
61 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/sgi_mipspro.hpp" |
62 | |
63 | #elif defined __DECCXX |
64 | // Compaq Tru64 Unix cxx |
65 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/compaq_cxx.hpp" |
66 | |
67 | #elif defined __ghs |
68 | // Greenhills C++ |
69 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/greenhills.hpp" |
70 | |
71 | #elif defined __CODEGEARC__ |
72 | // CodeGear - must be checked for before Borland |
73 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/codegear.hpp" |
74 | |
75 | #elif defined __BORLANDC__ |
76 | // Borland |
77 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/borland.hpp" |
78 | |
79 | #elif defined __MWERKS__ |
80 | // Metrowerks CodeWarrior |
81 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/metrowerks.hpp" |
82 | |
83 | #elif defined __SUNPRO_CC |
84 | // Sun Workshop Compiler C++ |
85 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/sunpro_cc.hpp" |
86 | |
87 | #elif defined __HP_aCC |
88 | // HP aCC |
89 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/hp_acc.hpp" |
90 | |
91 | #elif defined(__MRC__) || defined(__SC__) |
92 | // MPW MrCpp or SCpp |
93 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/mpw.hpp" |
94 | |
95 | #elif defined(__IBMCPP__) |
96 | // IBM Visual Age |
97 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/vacpp.hpp" |
98 | |
99 | #elif defined(__PGI) |
100 | // Portland Group Inc. |
101 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/pgi.hpp" |
102 | |
103 | #elif defined _MSC_VER |
104 | // Microsoft Visual C++ |
105 | // |
106 | // Must remain the last #elif since some other vendors (Metrowerks, for |
107 | // example) also #define _MSC_VER |
108 | # define BOOST_COMPILER_CONFIG "boost/config/compiler/visualc.hpp" |
109 | |
110 | #elif defined (BOOST_ASSERT_CONFIG) |
111 | // this must come last - generate an error if we don't |
112 | // recognise the compiler: |
113 | # error "Unknown compiler - please configure (http://www.boost.org/libs/config/config.htm#configuring) and report the results to the main boost mailing list (http://www.boost.org/more/mailing_lists.htm#main)" |
114 | |
115 | #endif |
116 | |
117 | #if 0 |
118 | // |
119 | // This section allows dependency scanners to find all the headers we *might* include: |
120 | // |
121 | #include "boost/config/compiler/gcc_xml.hpp" |
122 | #include "boost/config/compiler/cray.hpp" |
123 | #include "boost/config/compiler/comeau.hpp" |
124 | #include "boost/config/compiler/pathscale.hpp" |
125 | #include "boost/config/compiler/intel.hpp" |
126 | #include "boost/config/compiler/clang.hpp" |
127 | #include "boost/config/compiler/digitalmars.hpp" |
128 | #include "boost/config/compiler/gcc.hpp" |
129 | #include "boost/config/compiler/kai.hpp" |
130 | #include "boost/config/compiler/sgi_mipspro.hpp" |
131 | #include "boost/config/compiler/compaq_cxx.hpp" |
132 | #include "boost/config/compiler/greenhills.hpp" |
133 | #include "boost/config/compiler/codegear.hpp" |
134 | #include "boost/config/compiler/borland.hpp" |
135 | #include "boost/config/compiler/metrowerks.hpp" |
136 | #include "boost/config/compiler/sunpro_cc.hpp" |
137 | #include "boost/config/compiler/hp_acc.hpp" |
138 | #include "boost/config/compiler/mpw.hpp" |
139 | #include "boost/config/compiler/vacpp.hpp" |
140 | #include "boost/config/compiler/pgi.hpp" |
141 | #include "boost/config/compiler/visualc.hpp" |
142 | |
143 | #endif |
144 | |
145 | |