]> git.donarmstrong.com Git - rsem.git/blob - boost/config/compiler/visualc.hpp
a862570f59877632115717f12065214957ba39b5
[rsem.git] / boost / config / compiler / visualc.hpp
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
11 //  See http://www.boost.org for most recent version.
12
13 //  Microsoft Visual C++ compiler setup:
14
15 #define BOOST_MSVC _MSC_VER
16
17 #if _MSC_FULL_VER > 100000000
18 #  define BOOST_MSVC_FULL_VER _MSC_FULL_VER
19 #else
20 #  define BOOST_MSVC_FULL_VER (_MSC_FULL_VER * 10)
21 #endif
22
23 // turn off the warnings before we #include anything
24 #pragma warning( disable : 4503 ) // warning: decorated name length exceeded
25
26 #if _MSC_VER < 1300  // 1200 == VC++ 6.0, 1200-1202 == eVC++4
27 #  pragma warning( disable : 4786 ) // ident trunc to '255' chars in debug info
28 #  define BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
29 #  define BOOST_NO_VOID_RETURNS
30 #  define BOOST_NO_EXCEPTION_STD_NAMESPACE
31
32 #  if BOOST_MSVC == 1202
33 #    define BOOST_NO_STD_TYPEINFO
34 #  endif
35
36    // disable min/max macro defines on vc6:
37    //
38 #endif
39
40 #if (_MSC_VER <= 1300)  // 1300 == VC++ 7.0
41
42 #  if !defined(_MSC_EXTENSIONS) && !defined(BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS)      // VC7 bug with /Za
43 #    define BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
44 #  endif
45
46 #  define BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
47 #  define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
48 #  define BOOST_NO_PRIVATE_IN_AGGREGATE
49 #  define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
50 #  define BOOST_NO_INTEGRAL_INT64_T
51 #  define BOOST_NO_DEDUCED_TYPENAME
52 #  define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
53
54 //    VC++ 6/7 has member templates but they have numerous problems including
55 //    cases of silent failure, so for safety we define:
56 #  define BOOST_NO_MEMBER_TEMPLATES
57 //    For VC++ experts wishing to attempt workarounds, we define:
58 #  define BOOST_MSVC6_MEMBER_TEMPLATES
59
60 #  define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
61 #  define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
62 #  define BOOST_NO_CV_VOID_SPECIALIZATIONS
63 #  define BOOST_NO_FUNCTION_TEMPLATE_ORDERING
64 #  define BOOST_NO_USING_TEMPLATE
65 #  define BOOST_NO_SWPRINTF
66 #  define BOOST_NO_TEMPLATE_TEMPLATES
67 #  define BOOST_NO_SFINAE
68 #  define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
69 #  define BOOST_NO_IS_ABSTRACT
70 #  define BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS
71 // TODO: what version is meant here? Have there really been any fixes in cl 12.01 (as e.g. shipped with eVC4)?
72 #  if (_MSC_VER > 1200)
73 #     define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
74 #  endif
75
76 #endif
77
78 #if _MSC_VER < 1400 
79 // although a conforming signature for swprint exists in VC7.1
80 // it appears not to actually work:
81 #  define BOOST_NO_SWPRINTF
82 // Our extern template tests also fail for this compiler:
83 #  define BOOST_NO_EXTERN_TEMPLATE
84 #endif
85
86 #if defined(UNDER_CE)
87 // Windows CE does not have a conforming signature for swprintf
88 #  define BOOST_NO_SWPRINTF
89 #endif
90
91 #if _MSC_VER <= 1400  // 1400 == VC++ 8.0
92 #  define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
93 #endif
94
95 #if _MSC_VER <= 1600  // 1600 == VC++ 10.0
96 #  define BOOST_NO_TWO_PHASE_NAME_LOOKUP
97 #endif
98
99 #if _MSC_VER == 1500  // 1500 == VC++ 9.0
100    // A bug in VC9:
101 #  define BOOST_NO_ADL_BARRIER
102 #endif
103
104
105 #if (_MSC_VER <= 1600)
106 // MSVC (including the latest checked version) has not yet completely 
107 // implemented value-initialization, as is reported:
108 // "VC++ does not value-initialize members of derived classes without 
109 // user-declared constructor", reported in 2009 by Sylvester Hesp:
110 // https://connect.microsoft.com/VisualStudio/feedback/details/484295
111 // "Presence of copy constructor breaks member class initialization",
112 // reported in 2009 by Alex Vakulenko:
113 // https://connect.microsoft.com/VisualStudio/feedback/details/499606
114 // "Value-initialization in new-expression", reported in 2005 by
115 // Pavel Kuznetsov (MetaCommunications Engineering):
116 // https://connect.microsoft.com/VisualStudio/feedback/details/100744
117 // See also: http://www.boost.org/libs/utility/value_init.htm#compiler_issues
118 // (Niels Dekker, LKEB, May 2010)
119 #define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
120 #endif
121
122 #if _MSC_VER <= 1500  || !defined(BOOST_STRICT_CONFIG) // 1500 == VC++ 9.0
123 #  define BOOST_NO_INITIALIZER_LISTS
124 #endif
125
126 #ifndef _NATIVE_WCHAR_T_DEFINED
127 #  define BOOST_NO_INTRINSIC_WCHAR_T
128 #endif
129
130 #if defined(_WIN32_WCE) || defined(UNDER_CE)
131 #  define BOOST_NO_THREADEX
132 #  define BOOST_NO_GETSYSTEMTIMEASFILETIME
133 #  define BOOST_NO_SWPRINTF
134 #endif
135
136 //   
137 // check for exception handling support:   
138 #if !defined(_CPPUNWIND) && !defined(BOOST_NO_EXCEPTIONS)
139 #  define BOOST_NO_EXCEPTIONS   
140 #endif 
141
142 //
143 // __int64 support:
144 //
145 #if (_MSC_VER >= 1200)
146 #   define BOOST_HAS_MS_INT64
147 #endif
148 #if (_MSC_VER >= 1310) && (defined(_MSC_EXTENSIONS) || (_MSC_VER >= 1400))
149 #   define BOOST_HAS_LONG_LONG
150 #else
151 #   define BOOST_NO_LONG_LONG
152 #endif
153 #if (_MSC_VER >= 1400) && !defined(_DEBUG)
154 #   define BOOST_HAS_NRVO
155 #endif
156 //
157 // disable Win32 API's if compiler extentions are
158 // turned off:
159 //
160 #if !defined(_MSC_EXTENSIONS) && !defined(BOOST_DISABLE_WIN32)
161 #  define BOOST_DISABLE_WIN32
162 #endif
163 #if !defined(_CPPRTTI) && !defined(BOOST_NO_RTTI)
164 #  define BOOST_NO_RTTI
165 #endif
166
167 //
168 // C++0x features
169 //
170 //   See above for BOOST_NO_LONG_LONG
171
172 // C++ features supported by VC++ 10 (aka 2010)
173 //
174 #if _MSC_VER < 1600
175 #define BOOST_NO_AUTO_DECLARATIONS
176 #define BOOST_NO_AUTO_MULTIDECLARATIONS
177 #define BOOST_NO_LAMBDAS
178 #define BOOST_NO_RVALUE_REFERENCES
179 #define BOOST_NO_STATIC_ASSERT
180 #define BOOST_NO_NULLPTR
181 #endif // _MSC_VER < 1600
182 #if _MSC_VER >= 1600
183 #define BOOST_HAS_STDINT_H
184 #endif
185
186 // C++0x features not supported by any versions
187 #define BOOST_NO_CHAR16_T
188 #define BOOST_NO_CHAR32_T
189 #define BOOST_NO_CONCEPTS
190 #define BOOST_NO_CONSTEXPR
191 #define BOOST_NO_DEFAULTED_FUNCTIONS
192 #define BOOST_NO_DECLTYPE
193 #define BOOST_NO_DELETED_FUNCTIONS
194 #define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
195 #define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
196 #define BOOST_NO_INITIALIZER_LISTS
197 #define BOOST_NO_RAW_LITERALS
198 #define BOOST_NO_SCOPED_ENUMS
199 #define BOOST_NO_SFINAE_EXPR
200 #define BOOST_NO_TEMPLATE_ALIASES
201 #define BOOST_NO_UNICODE_LITERALS
202 #define BOOST_NO_VARIADIC_TEMPLATES
203 //
204 // prefix and suffix headers:
205 //
206 #ifndef BOOST_ABI_PREFIX
207 #  define BOOST_ABI_PREFIX "boost/config/abi/msvc_prefix.hpp"
208 #endif
209 #ifndef BOOST_ABI_SUFFIX
210 #  define BOOST_ABI_SUFFIX "boost/config/abi/msvc_suffix.hpp"
211 #endif
212
213 // TODO:
214 // these things are mostly bogus. 1200 means version 12.0 of the compiler. The 
215 // artificial versions assigned to them only refer to the versions of some IDE
216 // these compilers have been shipped with, and even that is not all of it. Some
217 // were shipped with freely downloadable SDKs, others as crosscompilers in eVC.
218 // IOW, you can't use these 'versions' in any sensible way. Sorry.
219 # if defined(UNDER_CE)
220 #   if _MSC_VER < 1200
221       // Note: these are so far off, they are not really supported
222 #   elif _MSC_VER < 1300 // eVC++ 4 comes with 1200-1202
223 #     define BOOST_COMPILER_VERSION evc4.0
224 #   elif _MSC_VER == 1400
225 #     define BOOST_COMPILER_VERSION evc8
226 #   elif _MSC_VER == 1500
227 #     define BOOST_COMPILER_VERSION evc9
228 #   elif _MSC_VER == 1600
229 #     define BOOST_COMPILER_VERSION evc10
230 #   else
231 #      if defined(BOOST_ASSERT_CONFIG)
232 #         error "Unknown EVC++ compiler version - please run the configure tests and report the results"
233 #      else
234 #         pragma message("Unknown EVC++ compiler version - please run the configure tests and report the results")
235 #      endif
236 #   endif
237 # else
238 #   if _MSC_VER < 1200
239       // Note: these are so far off, they are not really supported
240 #     define BOOST_COMPILER_VERSION 5.0
241 #   elif _MSC_VER < 1300
242 #       define BOOST_COMPILER_VERSION 6.0
243 #   elif _MSC_VER == 1300
244 #     define BOOST_COMPILER_VERSION 7.0
245 #   elif _MSC_VER == 1310
246 #     define BOOST_COMPILER_VERSION 7.1
247 #   elif _MSC_VER == 1400
248 #     define BOOST_COMPILER_VERSION 8.0
249 #   elif _MSC_VER == 1500
250 #     define BOOST_COMPILER_VERSION 9.0
251 #   elif _MSC_VER == 1600
252 #     define BOOST_COMPILER_VERSION 10.0
253 #   else
254 #     define BOOST_COMPILER_VERSION _MSC_VER
255 #   endif
256 # endif
257
258 #define BOOST_COMPILER "Microsoft Visual C++ version " BOOST_STRINGIZE(BOOST_COMPILER_VERSION)
259
260 //
261 // versions check:
262 // we don't support Visual C++ prior to version 6:
263 #if _MSC_VER < 1200
264 #error "Compiler not supported or configured - please reconfigure"
265 #endif
266 //
267 // last known and checked version is 1600 (VC10, aka 2010):
268 #if (_MSC_VER > 1600)
269 #  if defined(BOOST_ASSERT_CONFIG)
270 #     error "Unknown compiler version - please run the configure tests and report the results"
271 #  else
272 #     pragma message("Unknown compiler version - please run the configure tests and report the results")
273 #  endif
274 #endif