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(__GCCXML__) 17 // GCC-XML emulates other compilers, it has to appear first here! 18 # define BOOST_COMPILER_CONFIG "boost/config/compiler/gcc_xml.hpp" 19 20 #elif defined(_CRAYC) 21 // EDG based Cray compiler: 22 # define BOOST_COMPILER_CONFIG "boost/config/compiler/cray.hpp" 23 24 #elif defined __CUDACC__ 25 // NVIDIA CUDA C++ compiler for GPU 26 # define BOOST_COMPILER_CONFIG "boost/config/compiler/nvcc.hpp" 27 28 #elif defined __COMO__ 29 // Comeau C++ 30 # define BOOST_COMPILER_CONFIG "boost/config/compiler/comeau.hpp" 31 32 #elif defined(__PATHSCALE__) && (__PATHCC__ >= 4) 33 // PathScale EKOPath compiler (has to come before clang and gcc) 34 # define BOOST_COMPILER_CONFIG "boost/config/compiler/pathscale.hpp" 35 36 #elif defined __clang__ 37 // Clang C++ emulates GCC, so it has to appear early. 38 # define BOOST_COMPILER_CONFIG "boost/config/compiler/clang.hpp" 39 40 #elif defined __DMC__ 41 // Digital Mars C++ 42 # define BOOST_COMPILER_CONFIG "boost/config/compiler/digitalmars.hpp" 43 44 #elif defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC) 45 // Intel 46 # define BOOST_COMPILER_CONFIG "boost/config/compiler/intel.hpp" 47 48 # elif defined __GNUC__ 49 // GNU C++: 50 # define BOOST_COMPILER_CONFIG "boost/config/compiler/gcc.hpp" 51 52 #elif defined __KCC 53 // Kai C++ 54 # define BOOST_COMPILER_CONFIG "boost/config/compiler/kai.hpp" 55 56 #elif defined __sgi 57 // SGI MIPSpro C++ 58 # define BOOST_COMPILER_CONFIG "boost/config/compiler/sgi_mipspro.hpp" 59 60 #elif defined __DECCXX 61 // Compaq Tru64 Unix cxx 62 # define BOOST_COMPILER_CONFIG "boost/config/compiler/compaq_cxx.hpp" 63 64 #elif defined __ghs 65 // Greenhills C++ 66 # define BOOST_COMPILER_CONFIG "boost/config/compiler/greenhills.hpp" 67 68 #elif defined __CODEGEARC__ 69 // CodeGear - must be checked for before Borland 70 # define BOOST_COMPILER_CONFIG "boost/config/compiler/codegear.hpp" 71 72 #elif defined __BORLANDC__ 73 // Borland 74 # define BOOST_COMPILER_CONFIG "boost/config/compiler/borland.hpp" 75 76 #elif defined __MWERKS__ 77 // Metrowerks CodeWarrior 78 # define BOOST_COMPILER_CONFIG "boost/config/compiler/metrowerks.hpp" 79 80 #elif defined __SUNPRO_CC 81 // Sun Workshop Compiler C++ 82 # define BOOST_COMPILER_CONFIG "boost/config/compiler/sunpro_cc.hpp" 83 84 #elif defined __HP_aCC 85 // HP aCC 86 # define BOOST_COMPILER_CONFIG "boost/config/compiler/hp_acc.hpp" 87 88 #elif defined(__MRC__) || defined(__SC__) 89 // MPW MrCpp or SCpp 90 # define BOOST_COMPILER_CONFIG "boost/config/compiler/mpw.hpp" 91 92 #elif defined(__IBMCPP__) 93 // IBM Visual Age 94 # define BOOST_COMPILER_CONFIG "boost/config/compiler/vacpp.hpp" 95 96 #elif defined(__PGI) 97 // Portland Group Inc. 98 # define BOOST_COMPILER_CONFIG "boost/config/compiler/pgi.hpp" 99 100 #elif defined _MSC_VER 101 // Microsoft Visual C++ 102 // 103 // Must remain the last #elif since some other vendors (Metrowerks, for 104 // example) also #define _MSC_VER 105 # define BOOST_COMPILER_CONFIG "boost/config/compiler/visualc.hpp" 106 107 #elif defined (BOOST_ASSERT_CONFIG) 108 // this must come last - generate an error if we don't 109 // recognise the compiler: 110 # 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)" 111 112 #endif 113