visualc.hpp 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. // (C) Copyright John Maddock 2001 - 2003.
  2. // (C) Copyright Darin Adler 2001 - 2002.
  3. // (C) Copyright Peter Dimov 2001.
  4. // (C) Copyright Aleksey Gurtovoy 2002.
  5. // (C) Copyright David Abrahams 2002 - 2003.
  6. // (C) Copyright Beman Dawes 2002 - 2003.
  7. // Use, modification and distribution are subject to the
  8. // Boost Software License, Version 1.0. (See accompanying file
  9. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  10. // See http://www.boost.org for most recent version.
  11. //
  12. // Microsoft Visual C++ compiler setup:
  13. //
  14. // We need to be careful with the checks in this file, as contrary
  15. // to popular belief there are versions with _MSC_VER with the final
  16. // digit non-zero (mainly the MIPS cross compiler).
  17. //
  18. // So we either test _MSC_VER >= XXXX or else _MSC_VER < XXXX.
  19. // No other comparisons (==, >, or <=) are safe.
  20. //
  21. #define BOOST_MSVC _MSC_VER
  22. //
  23. // Helper macro BOOST_MSVC_FULL_VER for use in Boost code:
  24. //
  25. #if _MSC_FULL_VER > 100000000
  26. # define BOOST_MSVC_FULL_VER _MSC_FULL_VER
  27. #else
  28. # define BOOST_MSVC_FULL_VER (_MSC_FULL_VER * 10)
  29. #endif
  30. // Attempt to suppress VC6 warnings about the length of decorated names (obsolete):
  31. #pragma warning( disable : 4503 ) // warning: decorated name length exceeded
  32. #define BOOST_HAS_PRAGMA_ONCE
  33. //
  34. // versions check:
  35. // we don't support Visual C++ prior to version 7.1:
  36. #if _MSC_VER < 1310
  37. # error "Compiler not supported or configured - please reconfigure"
  38. #endif
  39. #if _MSC_FULL_VER < 180020827
  40. # define BOOST_NO_FENV_H
  41. #endif
  42. #if _MSC_VER < 1400
  43. // although a conforming signature for swprint exists in VC7.1
  44. // it appears not to actually work:
  45. # define BOOST_NO_SWPRINTF
  46. // Our extern template tests also fail for this compiler:
  47. # define BOOST_NO_CXX11_EXTERN_TEMPLATE
  48. // Variadic macros do not exist for VC7.1 and lower
  49. # define BOOST_NO_CXX11_VARIADIC_MACROS
  50. # define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
  51. #endif
  52. #if _MSC_VER < 1500 // 140X == VC++ 8.0
  53. # define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
  54. #endif
  55. #if _MSC_VER < 1600 // 150X == VC++ 9.0
  56. // A bug in VC9:
  57. # define BOOST_NO_ADL_BARRIER
  58. #endif
  59. #ifndef _NATIVE_WCHAR_T_DEFINED
  60. # define BOOST_NO_INTRINSIC_WCHAR_T
  61. #endif
  62. //
  63. // check for exception handling support:
  64. #if !defined(_CPPUNWIND) && !defined(BOOST_NO_EXCEPTIONS)
  65. # define BOOST_NO_EXCEPTIONS
  66. #endif
  67. //
  68. // __int64 support:
  69. //
  70. #define BOOST_HAS_MS_INT64
  71. #if defined(_MSC_EXTENSIONS) || (_MSC_VER >= 1400)
  72. # define BOOST_HAS_LONG_LONG
  73. #else
  74. # define BOOST_NO_LONG_LONG
  75. #endif
  76. #if (_MSC_VER >= 1400) && !defined(_DEBUG)
  77. # define BOOST_HAS_NRVO
  78. #endif
  79. #if _MSC_VER >= 1600 // 160X == VC++ 10.0
  80. # define BOOST_HAS_PRAGMA_DETECT_MISMATCH
  81. #endif
  82. //
  83. // disable Win32 API's if compiler extensions are
  84. // turned off:
  85. //
  86. #if !defined(_MSC_EXTENSIONS) && !defined(BOOST_DISABLE_WIN32)
  87. # define BOOST_DISABLE_WIN32
  88. #endif
  89. #if !defined(_CPPRTTI) && !defined(BOOST_NO_RTTI)
  90. # define BOOST_NO_RTTI
  91. #endif
  92. //
  93. // TR1 features:
  94. //
  95. #if _MSC_VER >= 1700
  96. // # define BOOST_HAS_TR1_HASH // don't know if this is true yet.
  97. // # define BOOST_HAS_TR1_TYPE_TRAITS // don't know if this is true yet.
  98. # define BOOST_HAS_TR1_UNORDERED_MAP
  99. # define BOOST_HAS_TR1_UNORDERED_SET
  100. #endif
  101. //
  102. // C++0x features
  103. //
  104. // See above for BOOST_NO_LONG_LONG
  105. // C++ features supported by VC++ 10 (aka 2010)
  106. //
  107. #if _MSC_VER < 1600
  108. # define BOOST_NO_CXX11_AUTO_DECLARATIONS
  109. # define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
  110. # define BOOST_NO_CXX11_LAMBDAS
  111. # define BOOST_NO_CXX11_RVALUE_REFERENCES
  112. # define BOOST_NO_CXX11_STATIC_ASSERT
  113. # define BOOST_NO_CXX11_NULLPTR
  114. # define BOOST_NO_CXX11_DECLTYPE
  115. #endif // _MSC_VER < 1600
  116. #if _MSC_VER >= 1600
  117. # define BOOST_HAS_STDINT_H
  118. #endif
  119. // C++11 features supported by VC++ 11 (aka 2012)
  120. //
  121. #if _MSC_VER < 1700
  122. # define BOOST_NO_CXX11_FINAL
  123. # define BOOST_NO_CXX11_RANGE_BASED_FOR
  124. # define BOOST_NO_CXX11_SCOPED_ENUMS
  125. #endif // _MSC_VER < 1700
  126. // C++11 features supported by VC++ 12 (aka 2013).
  127. //
  128. #if _MSC_FULL_VER < 180020827
  129. # define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
  130. # define BOOST_NO_CXX11_DELETED_FUNCTIONS
  131. # define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
  132. # define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
  133. # define BOOST_NO_CXX11_RAW_LITERALS
  134. # define BOOST_NO_CXX11_TEMPLATE_ALIASES
  135. # define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
  136. # define BOOST_NO_CXX11_VARIADIC_TEMPLATES
  137. # define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  138. # define BOOST_NO_CXX11_DECLTYPE_N3276
  139. #endif
  140. // C++11 features supported by VC++ 14 (aka 2015)
  141. //
  142. #if (_MSC_FULL_VER < 190023026)
  143. # define BOOST_NO_CXX11_NOEXCEPT
  144. # define BOOST_NO_CXX11_REF_QUALIFIERS
  145. # define BOOST_NO_CXX11_USER_DEFINED_LITERALS
  146. # define BOOST_NO_CXX11_ALIGNAS
  147. # define BOOST_NO_CXX11_INLINE_NAMESPACES
  148. # define BOOST_NO_CXX11_CHAR16_T
  149. # define BOOST_NO_CXX11_CHAR32_T
  150. # define BOOST_NO_CXX11_UNICODE_LITERALS
  151. # define BOOST_NO_CXX14_DECLTYPE_AUTO
  152. # define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
  153. # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION
  154. # define BOOST_NO_CXX14_BINARY_LITERALS
  155. # define BOOST_NO_CXX14_GENERIC_LAMBDAS
  156. # define BOOST_NO_CXX14_DIGIT_SEPARATORS
  157. #endif
  158. // MSVC including version 14 has not yet completely
  159. // implemented value-initialization, as is reported:
  160. // "VC++ does not value-initialize members of derived classes without
  161. // user-declared constructor", reported in 2009 by Sylvester Hesp:
  162. // https://connect.microsoft.com/VisualStudio/feedback/details/484295
  163. // "Presence of copy constructor breaks member class initialization",
  164. // reported in 2009 by Alex Vakulenko:
  165. // https://connect.microsoft.com/VisualStudio/feedback/details/499606
  166. // "Value-initialization in new-expression", reported in 2005 by
  167. // Pavel Kuznetsov (MetaCommunications Engineering):
  168. // https://connect.microsoft.com/VisualStudio/feedback/details/100744
  169. // Reported again by John Maddock in 2015 for VC14:
  170. // https://connect.microsoft.com/VisualStudio/feedback/details/1582233/c-subobjects-still-not-value-initialized-correctly
  171. // See also: http://www.boost.org/libs/utility/value_init.htm#compiler_issues
  172. // (Niels Dekker, LKEB, May 2010)
  173. #define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
  174. // C++11 features not supported by any versions
  175. #define BOOST_NO_SFINAE_EXPR
  176. #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
  177. //
  178. // This is somewhat supported in VC14, but we may need to wait for
  179. // a service release before enabling:
  180. //
  181. #define BOOST_NO_CXX11_CONSTEXPR
  182. // C++ 14:
  183. #if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304)
  184. # define BOOST_NO_CXX14_AGGREGATE_NSDMI
  185. #endif
  186. #if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304)
  187. # define BOOST_NO_CXX14_CONSTEXPR
  188. #endif
  189. #if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304)
  190. # define BOOST_NO_CXX14_VARIABLE_TEMPLATES
  191. #endif
  192. //
  193. // prefix and suffix headers:
  194. //
  195. #ifndef BOOST_ABI_PREFIX
  196. # define BOOST_ABI_PREFIX "boost/config/abi/msvc_prefix.hpp"
  197. #endif
  198. #ifndef BOOST_ABI_SUFFIX
  199. # define BOOST_ABI_SUFFIX "boost/config/abi/msvc_suffix.hpp"
  200. #endif
  201. #ifndef BOOST_COMPILER
  202. // TODO:
  203. // these things are mostly bogus. 1200 means version 12.0 of the compiler. The
  204. // artificial versions assigned to them only refer to the versions of some IDE
  205. // these compilers have been shipped with, and even that is not all of it. Some
  206. // were shipped with freely downloadable SDKs, others as crosscompilers in eVC.
  207. // IOW, you can't use these 'versions' in any sensible way. Sorry.
  208. # if defined(UNDER_CE)
  209. # if _MSC_VER < 1400
  210. // Note: I'm not aware of any CE compiler with version 13xx
  211. # if defined(BOOST_ASSERT_CONFIG)
  212. # error "Unknown EVC++ compiler version - please run the configure tests and report the results"
  213. # else
  214. # pragma message("Unknown EVC++ compiler version - please run the configure tests and report the results")
  215. # endif
  216. # elif _MSC_VER < 1500
  217. # define BOOST_COMPILER_VERSION evc8
  218. # elif _MSC_VER < 1600
  219. # define BOOST_COMPILER_VERSION evc9
  220. # elif _MSC_VER < 1700
  221. # define BOOST_COMPILER_VERSION evc10
  222. # elif _MSC_VER < 1800
  223. # define BOOST_COMPILER_VERSION evc11
  224. # elif _MSC_VER < 1900
  225. # define BOOST_COMPILER_VERSION evc12
  226. # elif _MSC_VER < 2000
  227. # define BOOST_COMPILER_VERSION evc14
  228. # else
  229. # if defined(BOOST_ASSERT_CONFIG)
  230. # error "Unknown EVC++ compiler version - please run the configure tests and report the results"
  231. # else
  232. # pragma message("Unknown EVC++ compiler version - please run the configure tests and report the results")
  233. # endif
  234. # endif
  235. # else
  236. # if _MSC_VER < 1310
  237. // Note: Versions up to 7.0 aren't supported.
  238. # define BOOST_COMPILER_VERSION 5.0
  239. # elif _MSC_VER < 1300
  240. # define BOOST_COMPILER_VERSION 6.0
  241. # elif _MSC_VER < 1310
  242. # define BOOST_COMPILER_VERSION 7.0
  243. # elif _MSC_VER < 1400
  244. # define BOOST_COMPILER_VERSION 7.1
  245. # elif _MSC_VER < 1500
  246. # define BOOST_COMPILER_VERSION 8.0
  247. # elif _MSC_VER < 1600
  248. # define BOOST_COMPILER_VERSION 9.0
  249. # elif _MSC_VER < 1700
  250. # define BOOST_COMPILER_VERSION 10.0
  251. # elif _MSC_VER < 1800
  252. # define BOOST_COMPILER_VERSION 11.0
  253. # elif _MSC_VER < 1900
  254. # define BOOST_COMPILER_VERSION 12.0
  255. # elif _MSC_VER < 2000
  256. # define BOOST_COMPILER_VERSION 14.0
  257. # else
  258. # define BOOST_COMPILER_VERSION _MSC_VER
  259. # endif
  260. # endif
  261. # define BOOST_COMPILER "Microsoft Visual C++ version " BOOST_STRINGIZE(BOOST_COMPILER_VERSION)
  262. #endif
  263. //
  264. // last known and checked version is 19.00.23026 (VC++ 2015 RTM):
  265. #if (_MSC_VER > 1900)
  266. # if defined(BOOST_ASSERT_CONFIG)
  267. # error "Unknown compiler version - please run the configure tests and report the results"
  268. # else
  269. # pragma message("Unknown compiler version - please run the configure tests and report the results")
  270. # endif
  271. #endif