select_compiler_config.hpp 4.9 KB

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