blob: 22c5708301b8b8be262daced31296fcf01a9caf3 [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001// (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// We need to be careful with the checks in this file, as contrary
16// to popular belief there are versions with _MSC_VER with the final
17// digit non-zero (mainly the MIPS cross compiler).
18//
19// So we either test _MSC_VER >= XXXX or else _MSC_VER < XXXX.
20// No other comparisons (==, >, or <=) are safe.
21//
22
23#define BOOST_MSVC _MSC_VER
24
25//
26// Helper macro BOOST_MSVC_FULL_VER for use in Boost code:
27//
28#if _MSC_FULL_VER > 100000000
29# define BOOST_MSVC_FULL_VER _MSC_FULL_VER
30#else
31# define BOOST_MSVC_FULL_VER (_MSC_FULL_VER * 10)
32#endif
33
34// Attempt to suppress VC6 warnings about the length of decorated names (obsolete):
35#pragma warning( disable : 4503 ) // warning: decorated name length exceeded
36
37//
38// versions check:
39// we don't support Visual C++ prior to version 6:
40#if _MSC_VER < 1200
41# error "Compiler not supported or configured - please reconfigure"
42#endif
43
44#if _MSC_VER < 1300 // 1200 == VC++ 6.0, 1200-1202 == eVC++4
45# pragma warning( disable : 4786 ) // ident trunc to '255' chars in debug info
46# define BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
47# define BOOST_NO_VOID_RETURNS
48# define BOOST_NO_EXCEPTION_STD_NAMESPACE
49
50# if _MSC_VER == 1202
51# define BOOST_NO_STD_TYPEINFO
52# endif
53
54#endif
55
56/// Visual Studio has no fenv.h
57#define BOOST_NO_FENV_H
58
59#if (_MSC_VER < 1310) // 130X == VC++ 7.0
60
61# if !defined(_MSC_EXTENSIONS) && !defined(BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS) // VC7 bug with /Za
62# define BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
63# endif
64
65# define BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
66# define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
67# define BOOST_NO_PRIVATE_IN_AGGREGATE
68# define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
69# define BOOST_NO_INTEGRAL_INT64_T
70# define BOOST_NO_DEDUCED_TYPENAME
71# define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
72
73// VC++ 6/7 has member templates but they have numerous problems including
74// cases of silent failure, so for safety we define:
75# define BOOST_NO_MEMBER_TEMPLATES
76// For VC++ experts wishing to attempt workarounds, we define:
77# define BOOST_MSVC6_MEMBER_TEMPLATES
78
79# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
80# define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
81# define BOOST_NO_CV_VOID_SPECIALIZATIONS
82# define BOOST_NO_FUNCTION_TEMPLATE_ORDERING
83# define BOOST_NO_USING_TEMPLATE
84# define BOOST_NO_SWPRINTF
85# define BOOST_NO_TEMPLATE_TEMPLATES
86# define BOOST_NO_SFINAE
87# define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
88# define BOOST_NO_IS_ABSTRACT
89# define BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS
90// TODO: what version is meant here? Have there really been any fixes in cl 12.01 (as e.g. shipped with eVC4)?
91# if (_MSC_VER >= 1300)
92# define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
93# endif
94
95#endif
96
97#if _MSC_VER < 1400
98// although a conforming signature for swprint exists in VC7.1
99// it appears not to actually work:
100# define BOOST_NO_SWPRINTF
101// Our extern template tests also fail for this compiler:
102# define BOOST_NO_CXX11_EXTERN_TEMPLATE
103// Variadic macros do not exist for VC7.1 and lower
104# define BOOST_NO_CXX11_VARIADIC_MACROS
105#endif
106
107#if defined(UNDER_CE)
108// Windows CE does not have a conforming signature for swprintf
109# define BOOST_NO_SWPRINTF
110#endif
111
112#if _MSC_VER < 1500 // 140X == VC++ 8.0
113# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
114#endif
115
116#if _MSC_VER < 1600 // 150X == VC++ 9.0
117 // A bug in VC9:
118# define BOOST_NO_ADL_BARRIER
119#endif
120
121
122// MSVC (including the latest checked version) has not yet completely
123// implemented value-initialization, as is reported:
124// "VC++ does not value-initialize members of derived classes without
125// user-declared constructor", reported in 2009 by Sylvester Hesp:
126// https://connect.microsoft.com/VisualStudio/feedback/details/484295
127// "Presence of copy constructor breaks member class initialization",
128// reported in 2009 by Alex Vakulenko:
129// https://connect.microsoft.com/VisualStudio/feedback/details/499606
130// "Value-initialization in new-expression", reported in 2005 by
131// Pavel Kuznetsov (MetaCommunications Engineering):
132// https://connect.microsoft.com/VisualStudio/feedback/details/100744
133// See also: http://www.boost.org/libs/utility/value_init.htm#compiler_issues
134// (Niels Dekker, LKEB, May 2010)
135# define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
136
137#if _MSC_VER < 1600 || !defined(BOOST_STRICT_CONFIG) // 150X == VC++ 9.0
138# define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
139#endif
140
141#ifndef _NATIVE_WCHAR_T_DEFINED
142# define BOOST_NO_INTRINSIC_WCHAR_T
143#endif
144
145#if defined(_WIN32_WCE) || defined(UNDER_CE)
146# define BOOST_NO_SWPRINTF
147#endif
148
149// we have ThreadEx or GetSystemTimeAsFileTime unless we're running WindowsCE
150#if !defined(_WIN32_WCE) && !defined(UNDER_CE)
151# define BOOST_HAS_THREADEX
152# define BOOST_HAS_GETSYSTEMTIMEASFILETIME
153#endif
154
155//
156// check for exception handling support:
157#if !defined(_CPPUNWIND) && !defined(BOOST_NO_EXCEPTIONS)
158# define BOOST_NO_EXCEPTIONS
159#endif
160
161//
162// __int64 support:
163//
164#if (_MSC_VER >= 1200)
165# define BOOST_HAS_MS_INT64
166#endif
167#if (_MSC_VER >= 1310) && (defined(_MSC_EXTENSIONS) || (_MSC_VER >= 1400))
168# define BOOST_HAS_LONG_LONG
169#else
170# define BOOST_NO_LONG_LONG
171#endif
172#if (_MSC_VER >= 1400) && !defined(_DEBUG)
173# define BOOST_HAS_NRVO
174#endif
175//
176// disable Win32 API's if compiler extentions are
177// turned off:
178//
179#if !defined(_MSC_EXTENSIONS) && !defined(BOOST_DISABLE_WIN32)
180# define BOOST_DISABLE_WIN32
181#endif
182#if !defined(_CPPRTTI) && !defined(BOOST_NO_RTTI)
183# define BOOST_NO_RTTI
184#endif
185
186//
187// TR1 features:
188//
189#if _MSC_VER >= 1700
190// # define BOOST_HAS_TR1_HASH // don't know if this is true yet.
191// # define BOOST_HAS_TR1_TYPE_TRAITS // don't know if this is true yet.
192# define BOOST_HAS_TR1_UNORDERED_MAP
193# define BOOST_HAS_TR1_UNORDERED_SET
194#endif
195
196//
197// C++0x features
198//
199// See above for BOOST_NO_LONG_LONG
200
201// C++ features supported by VC++ 10 (aka 2010)
202//
203#if _MSC_VER < 1600
204# define BOOST_NO_CXX11_AUTO_DECLARATIONS
205# define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
206# define BOOST_NO_CXX11_LAMBDAS
207# define BOOST_NO_CXX11_RVALUE_REFERENCES
208# define BOOST_NO_CXX11_STATIC_ASSERT
209# define BOOST_NO_CXX11_NULLPTR
210# define BOOST_NO_CXX11_DECLTYPE
211#endif // _MSC_VER < 1600
212
213#if _MSC_VER >= 1600
214# define BOOST_HAS_STDINT_H
215#endif
216
217// C++ features supported by VC++ 11 (aka 2012)
218//
219#if _MSC_VER < 1700
220# define BOOST_NO_CXX11_RANGE_BASED_FOR
221# define BOOST_NO_CXX11_SCOPED_ENUMS
222#endif // _MSC_VER < 1700
223
224// C++0x features not supported by any versions
225#define BOOST_NO_CXX11_CHAR16_T
226#define BOOST_NO_CXX11_CHAR32_T
227#define BOOST_NO_CXX11_CONSTEXPR
228#define BOOST_NO_CXX11_DECLTYPE_N3276
229#define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
230#define BOOST_NO_CXX11_DELETED_FUNCTIONS
231#define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
232#define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
233#define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
234#define BOOST_NO_CXX11_NOEXCEPT
235#define BOOST_NO_CXX11_RAW_LITERALS
236#define BOOST_NO_CXX11_TEMPLATE_ALIASES
237#define BOOST_NO_CXX11_UNICODE_LITERALS
238#define BOOST_NO_CXX11_VARIADIC_TEMPLATES
239#define BOOST_NO_SFINAE_EXPR
240#define BOOST_NO_TWO_PHASE_NAME_LOOKUP
241#define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
242//
243// prefix and suffix headers:
244//
245#ifndef BOOST_ABI_PREFIX
Jeff Thompson2277ce52013-08-01 17:34:11 -0700246# define BOOST_ABI_PREFIX "ndnboost/config/abi/msvc_prefix.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700247#endif
248#ifndef BOOST_ABI_SUFFIX
Jeff Thompson2277ce52013-08-01 17:34:11 -0700249# define BOOST_ABI_SUFFIX "ndnboost/config/abi/msvc_suffix.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700250#endif
251
252#ifndef BOOST_COMPILER
253// TODO:
254// these things are mostly bogus. 1200 means version 12.0 of the compiler. The
255// artificial versions assigned to them only refer to the versions of some IDE
256// these compilers have been shipped with, and even that is not all of it. Some
257// were shipped with freely downloadable SDKs, others as crosscompilers in eVC.
258// IOW, you can't use these 'versions' in any sensible way. Sorry.
259# if defined(UNDER_CE)
260# if _MSC_VER < 1200
261 // Note: these are so far off, they are not really supported
262# elif _MSC_VER < 1300 // eVC++ 4 comes with 1200-1202
263# define BOOST_COMPILER_VERSION evc4.0
264# elif _MSC_VER < 1400
265 // Note: I'm not aware of any CE compiler with version 13xx
266# if defined(BOOST_ASSERT_CONFIG)
267# error "Unknown EVC++ compiler version - please run the configure tests and report the results"
268# else
269# pragma message("Unknown EVC++ compiler version - please run the configure tests and report the results")
270# endif
271# elif _MSC_VER < 1500
272# define BOOST_COMPILER_VERSION evc8
273# elif _MSC_VER < 1600
274# define BOOST_COMPILER_VERSION evc9
275# elif _MSC_VER < 1700
276# define BOOST_COMPILER_VERSION evc10
277# elif _MSC_VER < 1800
278# define BOOST_COMPILER_VERSION evc11
279# else
280# if defined(BOOST_ASSERT_CONFIG)
281# error "Unknown EVC++ compiler version - please run the configure tests and report the results"
282# else
283# pragma message("Unknown EVC++ compiler version - please run the configure tests and report the results")
284# endif
285# endif
286# else
287# if _MSC_VER < 1200
288 // Note: these are so far off, they are not really supported
289# define BOOST_COMPILER_VERSION 5.0
290# elif _MSC_VER < 1300
291# define BOOST_COMPILER_VERSION 6.0
292# elif _MSC_VER < 1310
293# define BOOST_COMPILER_VERSION 7.0
294# elif _MSC_VER < 1400
295# define BOOST_COMPILER_VERSION 7.1
296# elif _MSC_VER < 1500
297# define BOOST_COMPILER_VERSION 8.0
298# elif _MSC_VER < 1600
299# define BOOST_COMPILER_VERSION 9.0
300# elif _MSC_VER < 1700
301# define BOOST_COMPILER_VERSION 10.0
302# elif _MSC_VER < 1800
303# define BOOST_COMPILER_VERSION 11.0
304# else
305# define BOOST_COMPILER_VERSION _MSC_VER
306# endif
307# endif
308
309# define BOOST_COMPILER "Microsoft Visual C++ version " BOOST_STRINGIZE(BOOST_COMPILER_VERSION)
310#endif
311
312//
313// last known and checked version is 1700 (VC11, aka 2011):
314#if (_MSC_VER > 1700)
315# if defined(BOOST_ASSERT_CONFIG)
316# error "Unknown compiler version - please run the configure tests and report the results"
317# else
318# pragma message("Unknown compiler version - please run the configure tests and report the results")
319# endif
320#endif