intel.hpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. // (C) Copyright John Maddock 2001-8.
  2. // (C) Copyright Peter Dimov 2001.
  3. // (C) Copyright Jens Maurer 2001.
  4. // (C) Copyright David Abrahams 2002 - 2003.
  5. // (C) Copyright Aleksey Gurtovoy 2002 - 2003.
  6. // (C) Copyright Guillaume Melquiond 2002 - 2003.
  7. // (C) Copyright Beman Dawes 2003.
  8. // (C) Copyright Martin Wille 2003.
  9. // Use, modification and distribution are subject to the
  10. // Boost Software License, Version 1.0. (See accompanying file
  11. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  12. // See http://www.boost.org for most recent version.
  13. // Intel compiler setup:
  14. #if defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1500) && (defined(_MSC_VER) || defined(__GNUC__))
  15. #ifdef _MSC_VER
  16. #include <boost/config/compiler/visualc.hpp>
  17. #undef BOOST_MSVC
  18. #undef BOOST_MSVC_FULL_VER
  19. #if (__INTEL_COMPILER >= 1500) && (_MSC_VER >= 1900)
  20. //
  21. // These appear to be supported, even though VC++ may not support them:
  22. //
  23. #define BOOST_HAS_EXPM1
  24. #define BOOST_HAS_LOG1P
  25. #undef BOOST_NO_CXX14_BINARY_LITERALS
  26. // This one may be a little risky to enable??
  27. #undef BOOST_NO_SFINAE_EXPR
  28. #endif
  29. #else
  30. #include <boost/config/compiler/gcc.hpp>
  31. #undef BOOST_GCC_VERSION
  32. #undef BOOST_GCC_CXX11
  33. #endif
  34. #undef BOOST_COMPILER
  35. #if defined(__INTEL_COMPILER)
  36. #if __INTEL_COMPILER == 9999
  37. # define BOOST_INTEL_CXX_VERSION 1200 // Intel bug in 12.1.
  38. #else
  39. # define BOOST_INTEL_CXX_VERSION __INTEL_COMPILER
  40. #endif
  41. #elif defined(__ICL)
  42. # define BOOST_INTEL_CXX_VERSION __ICL
  43. #elif defined(__ICC)
  44. # define BOOST_INTEL_CXX_VERSION __ICC
  45. #elif defined(__ECC)
  46. # define BOOST_INTEL_CXX_VERSION __ECC
  47. #endif
  48. // Flags determined by comparing output of 'icpc -dM -E' with and without '-std=c++0x'
  49. #if (!(defined(_WIN32) || defined(_WIN64)) && defined(__STDC_HOSTED__) && (__STDC_HOSTED__ && (BOOST_INTEL_CXX_VERSION <= 1200))) || defined(__GXX_EXPERIMENTAL_CPP0X__) || defined(__GXX_EXPERIMENTAL_CXX0X__)
  50. # define BOOST_INTEL_STDCXX0X
  51. #endif
  52. #if defined(_MSC_VER) && (_MSC_VER >= 1600)
  53. # define BOOST_INTEL_STDCXX0X
  54. #endif
  55. #ifdef __GNUC__
  56. # define BOOST_INTEL_GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
  57. #endif
  58. #if !defined(BOOST_COMPILER)
  59. # if defined(BOOST_INTEL_STDCXX0X)
  60. # define BOOST_COMPILER "Intel C++ C++0x mode version " BOOST_STRINGIZE(BOOST_INTEL_CXX_VERSION)
  61. # else
  62. # define BOOST_COMPILER "Intel C++ version " BOOST_STRINGIZE(BOOST_INTEL_CXX_VERSION)
  63. # endif
  64. #endif
  65. #define BOOST_INTEL BOOST_INTEL_CXX_VERSION
  66. #if defined(_WIN32) || defined(_WIN64)
  67. # define BOOST_INTEL_WIN BOOST_INTEL
  68. #else
  69. # define BOOST_INTEL_LINUX BOOST_INTEL
  70. #endif
  71. #else
  72. #include "boost/config/compiler/common_edg.hpp"
  73. #if defined(__INTEL_COMPILER)
  74. #if __INTEL_COMPILER == 9999
  75. # define BOOST_INTEL_CXX_VERSION 1200 // Intel bug in 12.1.
  76. #else
  77. # define BOOST_INTEL_CXX_VERSION __INTEL_COMPILER
  78. #endif
  79. #elif defined(__ICL)
  80. # define BOOST_INTEL_CXX_VERSION __ICL
  81. #elif defined(__ICC)
  82. # define BOOST_INTEL_CXX_VERSION __ICC
  83. #elif defined(__ECC)
  84. # define BOOST_INTEL_CXX_VERSION __ECC
  85. #endif
  86. // Flags determined by comparing output of 'icpc -dM -E' with and without '-std=c++0x'
  87. #if (!(defined(_WIN32) || defined(_WIN64)) && defined(__STDC_HOSTED__) && (__STDC_HOSTED__ && (BOOST_INTEL_CXX_VERSION <= 1200))) || defined(__GXX_EXPERIMENTAL_CPP0X__) || defined(__GXX_EXPERIMENTAL_CXX0X__)
  88. # define BOOST_INTEL_STDCXX0X
  89. #endif
  90. #if defined(_MSC_VER) && (_MSC_VER >= 1600)
  91. # define BOOST_INTEL_STDCXX0X
  92. #endif
  93. #ifdef __GNUC__
  94. # define BOOST_INTEL_GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
  95. #endif
  96. #if !defined(BOOST_COMPILER)
  97. # if defined(BOOST_INTEL_STDCXX0X)
  98. # define BOOST_COMPILER "Intel C++ C++0x mode version " BOOST_STRINGIZE(BOOST_INTEL_CXX_VERSION)
  99. # else
  100. # define BOOST_COMPILER "Intel C++ version " BOOST_STRINGIZE(BOOST_INTEL_CXX_VERSION)
  101. # endif
  102. #endif
  103. #define BOOST_INTEL BOOST_INTEL_CXX_VERSION
  104. #if defined(_WIN32) || defined(_WIN64)
  105. # define BOOST_INTEL_WIN BOOST_INTEL
  106. #else
  107. # define BOOST_INTEL_LINUX BOOST_INTEL
  108. #endif
  109. #if (BOOST_INTEL_CXX_VERSION <= 600)
  110. # if defined(_MSC_VER) && (_MSC_VER <= 1300) // added check for <= VC 7 (Peter Dimov)
  111. // Boost libraries assume strong standard conformance unless otherwise
  112. // indicated by a config macro. As configured by Intel, the EDG front-end
  113. // requires certain compiler options be set to achieve that strong conformance.
  114. // Particularly /Qoption,c,--arg_dep_lookup (reported by Kirk Klobe & Thomas Witt)
  115. // and /Zc:wchar_t,forScope. See boost-root/tools/build/intel-win32-tools.jam for
  116. // details as they apply to particular versions of the compiler. When the
  117. // compiler does not predefine a macro indicating if an option has been set,
  118. // this config file simply assumes the option has been set.
  119. // Thus BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP will not be defined, even if
  120. // the compiler option is not enabled.
  121. # define BOOST_NO_SWPRINTF
  122. # endif
  123. // Void returns, 64 bit integrals don't work when emulating VC 6 (Peter Dimov)
  124. # if defined(_MSC_VER) && (_MSC_VER <= 1200)
  125. # define BOOST_NO_VOID_RETURNS
  126. # define BOOST_NO_INTEGRAL_INT64_T
  127. # endif
  128. #endif
  129. #if (BOOST_INTEL_CXX_VERSION <= 710) && defined(_WIN32)
  130. # define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
  131. #endif
  132. // See http://aspn.activestate.com/ASPN/Mail/Message/boost/1614864
  133. #if BOOST_INTEL_CXX_VERSION < 600
  134. # define BOOST_NO_INTRINSIC_WCHAR_T
  135. #else
  136. // We should test the macro _WCHAR_T_DEFINED to check if the compiler
  137. // supports wchar_t natively. *BUT* there is a problem here: the standard
  138. // headers define this macro if they typedef wchar_t. Anyway, we're lucky
  139. // because they define it without a value, while Intel C++ defines it
  140. // to 1. So we can check its value to see if the macro was defined natively
  141. // or not.
  142. // Under UNIX, the situation is exactly the same, but the macro _WCHAR_T
  143. // is used instead.
  144. # if ((_WCHAR_T_DEFINED + 0) == 0) && ((_WCHAR_T + 0) == 0)
  145. # define BOOST_NO_INTRINSIC_WCHAR_T
  146. # endif
  147. #endif
  148. #if defined(__GNUC__) && !defined(BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL)
  149. //
  150. // Figure out when Intel is emulating this gcc bug
  151. // (All Intel versions prior to 9.0.26, and versions
  152. // later than that if they are set up to emulate gcc 3.2
  153. // or earlier):
  154. //
  155. # if ((__GNUC__ == 3) && (__GNUC_MINOR__ <= 2)) || (BOOST_INTEL < 900) || (__INTEL_COMPILER_BUILD_DATE < 20050912)
  156. # define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
  157. # endif
  158. #endif
  159. #if (defined(__GNUC__) && (__GNUC__ < 4)) || (defined(_WIN32) && (BOOST_INTEL_CXX_VERSION <= 1200)) || (BOOST_INTEL_CXX_VERSION <= 1200)
  160. // GCC or VC emulation:
  161. #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
  162. #endif
  163. //
  164. // Verify that we have actually got BOOST_NO_INTRINSIC_WCHAR_T
  165. // set correctly, if we don't do this now, we will get errors later
  166. // in type_traits code among other things, getting this correct
  167. // for the Intel compiler is actually remarkably fragile and tricky:
  168. //
  169. #ifdef __cplusplus
  170. #if defined(BOOST_NO_INTRINSIC_WCHAR_T)
  171. #include <cwchar>
  172. template< typename T > struct assert_no_intrinsic_wchar_t;
  173. template<> struct assert_no_intrinsic_wchar_t<wchar_t> { typedef void type; };
  174. // if you see an error here then you need to unset BOOST_NO_INTRINSIC_WCHAR_T
  175. // where it is defined above:
  176. typedef assert_no_intrinsic_wchar_t<unsigned short>::type assert_no_intrinsic_wchar_t_;
  177. #else
  178. template< typename T > struct assert_intrinsic_wchar_t;
  179. template<> struct assert_intrinsic_wchar_t<wchar_t> {};
  180. // if you see an error here then define BOOST_NO_INTRINSIC_WCHAR_T on the command line:
  181. template<> struct assert_intrinsic_wchar_t<unsigned short> {};
  182. #endif
  183. #endif
  184. #if defined(_MSC_VER) && (_MSC_VER+0 >= 1000)
  185. # if _MSC_VER >= 1200
  186. # define BOOST_HAS_MS_INT64
  187. # endif
  188. # define BOOST_NO_SWPRINTF
  189. # define BOOST_NO_TWO_PHASE_NAME_LOOKUP
  190. #elif defined(_WIN32)
  191. # define BOOST_DISABLE_WIN32
  192. #endif
  193. // I checked version 6.0 build 020312Z, it implements the NRVO.
  194. // Correct this as you find out which version of the compiler
  195. // implemented the NRVO first. (Daniel Frey)
  196. #if (BOOST_INTEL_CXX_VERSION >= 600)
  197. # define BOOST_HAS_NRVO
  198. #endif
  199. // Branch prediction hints
  200. // I'm not sure 8.0 was the first version to support these builtins,
  201. // update the condition if the version is not accurate. (Andrey Semashev)
  202. #if defined(__GNUC__) && BOOST_INTEL_CXX_VERSION >= 800
  203. #define BOOST_LIKELY(x) __builtin_expect(x, 1)
  204. #define BOOST_UNLIKELY(x) __builtin_expect(x, 0)
  205. #endif
  206. // RTTI
  207. // __RTTI is the EDG macro
  208. // __INTEL_RTTI__ is the Intel macro
  209. // __GXX_RTTI is the g++ macro
  210. // _CPPRTTI is the MSVC++ macro
  211. #if !defined(__RTTI) && !defined(__INTEL_RTTI__) && !defined(__GXX_RTTI) && !defined(_CPPRTTI)
  212. #if !defined(BOOST_NO_RTTI)
  213. # define BOOST_NO_RTTI
  214. #endif
  215. // in MS mode, static typeid works even when RTTI is off
  216. #if !defined(_MSC_VER) && !defined(BOOST_NO_TYPEID)
  217. # define BOOST_NO_TYPEID
  218. #endif
  219. #endif
  220. //
  221. // versions check:
  222. // we don't support Intel prior to version 6.0:
  223. #if BOOST_INTEL_CXX_VERSION < 600
  224. # error "Compiler not supported or configured - please reconfigure"
  225. #endif
  226. // Intel on MacOS requires
  227. #if defined(__APPLE__) && defined(__INTEL_COMPILER)
  228. # define BOOST_NO_TWO_PHASE_NAME_LOOKUP
  229. #endif
  230. // Intel on Altix Itanium
  231. #if defined(__itanium__) && defined(__INTEL_COMPILER)
  232. # define BOOST_NO_TWO_PHASE_NAME_LOOKUP
  233. #endif
  234. //
  235. // An attempt to value-initialize a pointer-to-member may trigger an
  236. // internal error on Intel <= 11.1 (last checked version), as was
  237. // reported by John Maddock, Intel support issue 589832, May 2010.
  238. // Moreover, according to test results from Huang-Vista-x86_32_intel,
  239. // intel-vc9-win-11.1 may leave a non-POD array uninitialized, in some
  240. // cases when it should be value-initialized.
  241. // (Niels Dekker, LKEB, May 2010)
  242. // Apparently Intel 12.1 (compiler version number 9999 !!) has the same issue (compiler regression).
  243. #if defined(__INTEL_COMPILER)
  244. # if (__INTEL_COMPILER <= 1110) || (__INTEL_COMPILER == 9999) || (defined(_WIN32) && (__INTEL_COMPILER < 1600))
  245. # define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
  246. # endif
  247. #endif
  248. //
  249. // Dynamic shared object (DSO) and dynamic-link library (DLL) support
  250. //
  251. #if defined(__GNUC__) && (__GNUC__ >= 4)
  252. # define BOOST_SYMBOL_EXPORT __attribute__((visibility("default")))
  253. # define BOOST_SYMBOL_IMPORT
  254. # define BOOST_SYMBOL_VISIBLE __attribute__((visibility("default")))
  255. #endif
  256. //
  257. // C++0x features
  258. // For each feature we need to check both the Intel compiler version,
  259. // and the version of MSVC or GCC that we are emulating.
  260. // See http://software.intel.com/en-us/articles/c0x-features-supported-by-intel-c-compiler/
  261. // for a list of which features were implemented in which Intel releases.
  262. //
  263. #if defined(BOOST_INTEL_STDCXX0X)
  264. // BOOST_NO_CXX11_CONSTEXPR:
  265. #if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40600)) && !defined(_MSC_VER)
  266. // Available in earlier Intel versions, but fail our tests:
  267. # undef BOOST_NO_CXX11_CONSTEXPR
  268. #endif
  269. // BOOST_NO_CXX11_NULLPTR:
  270. #if (BOOST_INTEL_CXX_VERSION >= 1210) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40600)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600))
  271. # undef BOOST_NO_CXX11_NULLPTR
  272. #endif
  273. // BOOST_NO_CXX11_TEMPLATE_ALIASES
  274. #if (BOOST_INTEL_CXX_VERSION >= 1210) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40700)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827))
  275. # undef BOOST_NO_CXX11_TEMPLATE_ALIASES
  276. #endif
  277. // BOOST_NO_CXX11_DECLTYPE
  278. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40300)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600))
  279. # undef BOOST_NO_CXX11_DECLTYPE
  280. #endif
  281. // BOOST_NO_CXX11_DECLTYPE_N3276
  282. #if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40800)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827))
  283. # undef BOOST_NO_CXX11_DECLTYPE_N3276
  284. #endif
  285. // BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
  286. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40300)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827))
  287. # undef BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
  288. #endif
  289. // BOOST_NO_CXX11_RVALUE_REFERENCES
  290. #if (BOOST_INTEL_CXX_VERSION >= 1300) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40300)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600))
  291. // This is available from earlier Intel versions, but breaks Filesystem and other libraries:
  292. # undef BOOST_NO_CXX11_RVALUE_REFERENCES
  293. #endif
  294. // BOOST_NO_CXX11_STATIC_ASSERT
  295. #if (BOOST_INTEL_CXX_VERSION >= 1110) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40300)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600))
  296. # undef BOOST_NO_CXX11_STATIC_ASSERT
  297. #endif
  298. // BOOST_NO_CXX11_VARIADIC_TEMPLATES
  299. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827))
  300. # undef BOOST_NO_CXX11_VARIADIC_TEMPLATES
  301. #endif
  302. // BOOST_NO_CXX11_VARIADIC_MACROS
  303. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40200)) && (!defined(_MSC_VER) || (_MSC_VER >= 1400))
  304. # undef BOOST_NO_CXX11_VARIADIC_MACROS
  305. #endif
  306. // BOOST_NO_CXX11_AUTO_DECLARATIONS
  307. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600))
  308. # undef BOOST_NO_CXX11_AUTO_DECLARATIONS
  309. #endif
  310. // BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
  311. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600))
  312. # undef BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
  313. #endif
  314. // BOOST_NO_CXX11_CHAR16_T
  315. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999))
  316. # undef BOOST_NO_CXX11_CHAR16_T
  317. #endif
  318. // BOOST_NO_CXX11_CHAR32_T
  319. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999))
  320. # undef BOOST_NO_CXX11_CHAR32_T
  321. #endif
  322. // BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
  323. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827))
  324. # undef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
  325. #endif
  326. // BOOST_NO_CXX11_DELETED_FUNCTIONS
  327. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827))
  328. # undef BOOST_NO_CXX11_DELETED_FUNCTIONS
  329. #endif
  330. // BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  331. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_VER >= 1700))
  332. # undef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  333. #endif
  334. // BOOST_NO_CXX11_SCOPED_ENUMS
  335. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40501)) && (!defined(_MSC_VER) || (_MSC_VER >= 1700))
  336. // This is available but broken in earlier Intel releases.
  337. # undef BOOST_NO_CXX11_SCOPED_ENUMS
  338. #endif
  339. // BOOST_NO_SFINAE_EXPR
  340. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999))
  341. # undef BOOST_NO_SFINAE_EXPR
  342. #endif
  343. // BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
  344. #if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827))
  345. // This is available in earlier Intel releases, but breaks Multiprecision:
  346. # undef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
  347. #endif
  348. // BOOST_NO_CXX11_LAMBDAS
  349. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600))
  350. # undef BOOST_NO_CXX11_LAMBDAS
  351. #endif
  352. // BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
  353. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500))
  354. # undef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
  355. #endif
  356. // BOOST_NO_CXX11_RANGE_BASED_FOR
  357. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40600)) && (!defined(_MSC_VER) || (_MSC_VER >= 1700))
  358. # undef BOOST_NO_CXX11_RANGE_BASED_FOR
  359. #endif
  360. // BOOST_NO_CXX11_RAW_LITERALS
  361. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827))
  362. # undef BOOST_NO_CXX11_RAW_LITERALS
  363. #endif
  364. // BOOST_NO_CXX11_UNICODE_LITERALS
  365. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999))
  366. # undef BOOST_NO_CXX11_UNICODE_LITERALS
  367. #endif
  368. // BOOST_NO_CXX11_NOEXCEPT
  369. #if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40600)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999))
  370. // Available in earlier Intel release, but generates errors when used with
  371. // conditional exception specifications, for example in multiprecision:
  372. # undef BOOST_NO_CXX11_NOEXCEPT
  373. #endif
  374. // BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  375. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40600)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999))
  376. # undef BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  377. #endif
  378. // BOOST_NO_CXX11_USER_DEFINED_LITERALS
  379. #if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40700)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 190021730))
  380. # undef BOOST_NO_CXX11_USER_DEFINED_LITERALS
  381. #endif
  382. // BOOST_NO_CXX11_ALIGNAS
  383. #if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40800)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 190021730))
  384. # undef BOOST_NO_CXX11_ALIGNAS
  385. #endif
  386. // BOOST_NO_CXX11_TRAILING_RESULT_TYPES
  387. #if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827))
  388. # undef BOOST_NO_CXX11_TRAILING_RESULT_TYPES
  389. #endif
  390. // BOOST_NO_CXX11_INLINE_NAMESPACES
  391. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 190021730))
  392. # undef BOOST_NO_CXX11_INLINE_NAMESPACES
  393. #endif
  394. // BOOST_NO_CXX11_REF_QUALIFIERS
  395. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40800)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 190021730))
  396. # undef BOOST_NO_CXX11_REF_QUALIFIERS
  397. #endif
  398. // BOOST_NO_CXX11_FINAL
  399. #if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40700)) && (!defined(_MSC_VER) || (_MSC_VER >= 1700))
  400. # undef BOOST_NO_CXX11_FINAL
  401. #endif
  402. #endif
  403. //
  404. // Broken in all versions up to 15:
  405. #define BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS
  406. #if defined(BOOST_INTEL_STDCXX0X) && (BOOST_INTEL_CXX_VERSION <= 1310)
  407. # define BOOST_NO_CXX11_HDR_FUTURE
  408. # define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  409. #endif
  410. #if defined(BOOST_INTEL_STDCXX0X) && (BOOST_INTEL_CXX_VERSION == 1400)
  411. // A regression in Intel's compiler means that <tuple> seems to be broken in this release as well as <future> :
  412. # define BOOST_NO_CXX11_HDR_FUTURE
  413. # define BOOST_NO_CXX11_HDR_TUPLE
  414. #endif
  415. #if (BOOST_INTEL_CXX_VERSION < 1200)
  416. //
  417. // fenv.h appears not to work with Intel prior to 12.0:
  418. //
  419. # define BOOST_NO_FENV_H
  420. #endif
  421. // Intel 13.10 fails to access defaulted functions of a base class declared in private or protected sections,
  422. // producing the following errors:
  423. // error #453: protected function "..." (declared at ...") is not accessible through a "..." pointer or object
  424. #if (BOOST_INTEL_CXX_VERSION <= 1310)
  425. # define BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS
  426. #endif
  427. #if defined(_MSC_VER) && (_MSC_VER >= 1600)
  428. # define BOOST_HAS_STDINT_H
  429. #endif
  430. #if defined(__CUDACC__)
  431. # if defined(BOOST_GCC_CXX11)
  432. # define BOOST_NVCC_CXX11
  433. # else
  434. # define BOOST_NVCC_CXX03
  435. # endif
  436. #endif
  437. #if defined(__LP64__) && defined(__GNUC__) && (BOOST_INTEL_CXX_VERSION >= 1310) && !defined(BOOST_NVCC_CXX03)
  438. # define BOOST_HAS_INT128
  439. #endif
  440. #endif
  441. //
  442. // last known and checked version:
  443. #if (BOOST_INTEL_CXX_VERSION > 1500)
  444. # if defined(BOOST_ASSERT_CONFIG)
  445. # error "Unknown compiler version - please run the configure tests and report the results"
  446. # elif defined(_MSC_VER)
  447. //
  448. // We don't emit this warning any more, since we have so few
  449. // defect macros set anyway (just the one).
  450. //
  451. //# pragma message("Unknown compiler version - please run the configure tests and report the results")
  452. # endif
  453. #endif