blob: 1ba9d16c0dfd2dc9cd2b41776b8322d0a47acbcd [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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070023#define NDNBOOST_MSVC _MSC_VER
Jeff Thompsonf7d49942013-08-01 16:47:40 -070024
25//
Jeff Thompson3d613fd2013-10-15 15:39:04 -070026// Helper macro NDNBOOST_MSVC_FULL_VER for use in Boost code:
Jeff Thompsonf7d49942013-08-01 16:47:40 -070027//
28#if _MSC_FULL_VER > 100000000
Jeff Thompson3d613fd2013-10-15 15:39:04 -070029# define NDNBOOST_MSVC_FULL_VER _MSC_FULL_VER
Jeff Thompsonf7d49942013-08-01 16:47:40 -070030#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070031# define NDNBOOST_MSVC_FULL_VER (_MSC_FULL_VER * 10)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070032#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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070046# define NDNBOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
47# define NDNBOOST_NO_VOID_RETURNS
48# define NDNBOOST_NO_EXCEPTION_STD_NAMESPACE
Jeff Thompsonf7d49942013-08-01 16:47:40 -070049
50# if _MSC_VER == 1202
Jeff Thompson3d613fd2013-10-15 15:39:04 -070051# define NDNBOOST_NO_STD_TYPEINFO
Jeff Thompsonf7d49942013-08-01 16:47:40 -070052# endif
53
54#endif
55
56/// Visual Studio has no fenv.h
Jeff Thompson3d613fd2013-10-15 15:39:04 -070057#define NDNBOOST_NO_FENV_H
Jeff Thompsonf7d49942013-08-01 16:47:40 -070058
59#if (_MSC_VER < 1310) // 130X == VC++ 7.0
60
Jeff Thompson3d613fd2013-10-15 15:39:04 -070061# if !defined(_MSC_EXTENSIONS) && !defined(NDNBOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS) // VC7 bug with /Za
62# define NDNBOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
Jeff Thompsonf7d49942013-08-01 16:47:40 -070063# endif
64
Jeff Thompson3d613fd2013-10-15 15:39:04 -070065# define NDNBOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
66# define NDNBOOST_NO_INCLASS_MEMBER_INITIALIZATION
67# define NDNBOOST_NO_PRIVATE_IN_AGGREGATE
68# define NDNBOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
69# define NDNBOOST_NO_INTEGRAL_INT64_T
70# define NDNBOOST_NO_DEDUCED_TYPENAME
71# define NDNBOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
Jeff Thompsonf7d49942013-08-01 16:47:40 -070072
73// VC++ 6/7 has member templates but they have numerous problems including
74// cases of silent failure, so for safety we define:
Jeff Thompson3d613fd2013-10-15 15:39:04 -070075# define NDNBOOST_NO_MEMBER_TEMPLATES
Jeff Thompsonf7d49942013-08-01 16:47:40 -070076// For VC++ experts wishing to attempt workarounds, we define:
Jeff Thompson3d613fd2013-10-15 15:39:04 -070077# define NDNBOOST_MSVC6_MEMBER_TEMPLATES
Jeff Thompsonf7d49942013-08-01 16:47:40 -070078
Jeff Thompson3d613fd2013-10-15 15:39:04 -070079# define NDNBOOST_NO_MEMBER_TEMPLATE_FRIENDS
80# define NDNBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
81# define NDNBOOST_NO_CV_VOID_SPECIALIZATIONS
82# define NDNBOOST_NO_FUNCTION_TEMPLATE_ORDERING
83# define NDNBOOST_NO_USING_TEMPLATE
84# define NDNBOOST_NO_SWPRINTF
85# define NDNBOOST_NO_TEMPLATE_TEMPLATES
86# define NDNBOOST_NO_SFINAE
87# define NDNBOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
88# define NDNBOOST_NO_IS_ABSTRACT
89# define NDNBOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS
Jeff Thompsonf7d49942013-08-01 16:47:40 -070090// 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)
Jeff Thompson3d613fd2013-10-15 15:39:04 -070092# define NDNBOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
Jeff Thompsonf7d49942013-08-01 16:47:40 -070093# 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:
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700100# define NDNBOOST_NO_SWPRINTF
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700101// Our extern template tests also fail for this compiler:
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700102# define NDNBOOST_NO_CXX11_EXTERN_TEMPLATE
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700103// Variadic macros do not exist for VC7.1 and lower
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700104# define NDNBOOST_NO_CXX11_VARIADIC_MACROS
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700105#endif
106
107#if defined(UNDER_CE)
108// Windows CE does not have a conforming signature for swprintf
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700109# define NDNBOOST_NO_SWPRINTF
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700110#endif
111
112#if _MSC_VER < 1500 // 140X == VC++ 8.0
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700113# define NDNBOOST_NO_MEMBER_TEMPLATE_FRIENDS
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700114#endif
115
116#if _MSC_VER < 1600 // 150X == VC++ 9.0
117 // A bug in VC9:
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700118# define NDNBOOST_NO_ADL_BARRIER
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700119#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)
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700135# define NDNBOOST_NO_COMPLETE_VALUE_INITIALIZATION
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700136
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700137#ifndef _NATIVE_WCHAR_T_DEFINED
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700138# define NDNBOOST_NO_INTRINSIC_WCHAR_T
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700139#endif
140
141#if defined(_WIN32_WCE) || defined(UNDER_CE)
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700142# define NDNBOOST_NO_SWPRINTF
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700143#endif
144
145// we have ThreadEx or GetSystemTimeAsFileTime unless we're running WindowsCE
146#if !defined(_WIN32_WCE) && !defined(UNDER_CE)
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700147# define NDNBOOST_HAS_THREADEX
148# define NDNBOOST_HAS_GETSYSTEMTIMEASFILETIME
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700149#endif
150
151//
152// check for exception handling support:
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700153#if !defined(_CPPUNWIND) && !defined(NDNBOOST_NO_EXCEPTIONS)
154# define NDNBOOST_NO_EXCEPTIONS
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700155#endif
156
157//
158// __int64 support:
159//
160#if (_MSC_VER >= 1200)
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700161# define NDNBOOST_HAS_MS_INT64
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700162#endif
163#if (_MSC_VER >= 1310) && (defined(_MSC_EXTENSIONS) || (_MSC_VER >= 1400))
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700164# define NDNBOOST_HAS_LONG_LONG
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700165#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700166# define NDNBOOST_NO_LONG_LONG
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700167#endif
168#if (_MSC_VER >= 1400) && !defined(_DEBUG)
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700169# define NDNBOOST_HAS_NRVO
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700170#endif
171//
172// disable Win32 API's if compiler extentions are
173// turned off:
174//
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700175#if !defined(_MSC_EXTENSIONS) && !defined(NDNBOOST_DISABLE_WIN32)
176# define NDNBOOST_DISABLE_WIN32
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700177#endif
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700178#if !defined(_CPPRTTI) && !defined(NDNBOOST_NO_RTTI)
179# define NDNBOOST_NO_RTTI
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700180#endif
181
182//
183// TR1 features:
184//
185#if _MSC_VER >= 1700
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700186// # define NDNBOOST_HAS_TR1_HASH // don't know if this is true yet.
187// # define NDNBOOST_HAS_TR1_TYPE_TRAITS // don't know if this is true yet.
188# define NDNBOOST_HAS_TR1_UNORDERED_MAP
189# define NDNBOOST_HAS_TR1_UNORDERED_SET
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700190#endif
191
192//
193// C++0x features
194//
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700195// See above for NDNBOOST_NO_LONG_LONG
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700196
197// C++ features supported by VC++ 10 (aka 2010)
198//
199#if _MSC_VER < 1600
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700200# define NDNBOOST_NO_CXX11_AUTO_DECLARATIONS
201# define NDNBOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
202# define NDNBOOST_NO_CXX11_LAMBDAS
203# define NDNBOOST_NO_CXX11_RVALUE_REFERENCES
204# define NDNBOOST_NO_CXX11_STATIC_ASSERT
205# define NDNBOOST_NO_CXX11_NULLPTR
206# define NDNBOOST_NO_CXX11_DECLTYPE
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700207#endif // _MSC_VER < 1600
208
209#if _MSC_VER >= 1600
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700210# define NDNBOOST_HAS_STDINT_H
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700211#endif
212
213// C++ features supported by VC++ 11 (aka 2012)
214//
215#if _MSC_VER < 1700
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700216# define NDNBOOST_NO_CXX11_RANGE_BASED_FOR
217# define NDNBOOST_NO_CXX11_SCOPED_ENUMS
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700218#endif // _MSC_VER < 1700
219
Jeff Thompsona28eed82013-08-22 16:21:10 -0700220// C++11 features supported by VC++ 11 (aka 2012) November 2012 CTP
221// Because the CTP is unsupported, unrelease, and only alpha quality,
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700222// it is only supported if NDNBOOST_MSVC_ENABLE_2012_NOV_CTP is defined.
Jeff Thompsona28eed82013-08-22 16:21:10 -0700223//
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700224#if _MSC_FULL_VER < 170051025 || !defined(NDNBOOST_MSVC_ENABLE_2012_NOV_CTP)
225# define NDNBOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
226# define NDNBOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
227# define NDNBOOST_NO_CXX11_RAW_LITERALS
228# define NDNBOOST_NO_CXX11_VARIADIC_TEMPLATES
229# define NDNBOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
Jeff Thompsona28eed82013-08-22 16:21:10 -0700230#endif
231
232// C++11 features not supported by any versions
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700233#define NDNBOOST_NO_CXX11_CHAR16_T
234#define NDNBOOST_NO_CXX11_CHAR32_T
235#define NDNBOOST_NO_CXX11_CONSTEXPR
236#define NDNBOOST_NO_CXX11_DECLTYPE_N3276
237#define NDNBOOST_NO_CXX11_DEFAULTED_FUNCTIONS
238#define NDNBOOST_NO_CXX11_DELETED_FUNCTIONS
239#define NDNBOOST_NO_CXX11_NOEXCEPT
240#define NDNBOOST_NO_CXX11_TEMPLATE_ALIASES
241#define NDNBOOST_NO_CXX11_UNICODE_LITERALS
242#define NDNBOOST_NO_SFINAE_EXPR
243#define NDNBOOST_NO_TWO_PHASE_NAME_LOOKUP
244#define NDNBOOST_NO_CXX11_USER_DEFINED_LITERALS
Jeff Thompsona28eed82013-08-22 16:21:10 -0700245
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700246//
247// prefix and suffix headers:
248//
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700249#ifndef NDNBOOST_ABI_PREFIX
250# define NDNBOOST_ABI_PREFIX "ndnboost/config/abi/msvc_prefix.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700251#endif
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700252#ifndef NDNBOOST_ABI_SUFFIX
253# define NDNBOOST_ABI_SUFFIX "ndnboost/config/abi/msvc_suffix.hpp"
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700254#endif
255
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700256#ifndef NDNBOOST_COMPILER
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700257// TODO:
258// these things are mostly bogus. 1200 means version 12.0 of the compiler. The
259// artificial versions assigned to them only refer to the versions of some IDE
260// these compilers have been shipped with, and even that is not all of it. Some
261// were shipped with freely downloadable SDKs, others as crosscompilers in eVC.
262// IOW, you can't use these 'versions' in any sensible way. Sorry.
263# if defined(UNDER_CE)
264# if _MSC_VER < 1200
265 // Note: these are so far off, they are not really supported
266# elif _MSC_VER < 1300 // eVC++ 4 comes with 1200-1202
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700267# define NDNBOOST_COMPILER_VERSION evc4.0
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700268# elif _MSC_VER < 1400
269 // Note: I'm not aware of any CE compiler with version 13xx
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700270# if defined(NDNBOOST_ASSERT_CONFIG)
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700271# error "Unknown EVC++ compiler version - please run the configure tests and report the results"
272# else
273# pragma message("Unknown EVC++ compiler version - please run the configure tests and report the results")
274# endif
275# elif _MSC_VER < 1500
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700276# define NDNBOOST_COMPILER_VERSION evc8
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700277# elif _MSC_VER < 1600
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700278# define NDNBOOST_COMPILER_VERSION evc9
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700279# elif _MSC_VER < 1700
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700280# define NDNBOOST_COMPILER_VERSION evc10
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700281# elif _MSC_VER < 1800
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700282# define NDNBOOST_COMPILER_VERSION evc11
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700283# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700284# if defined(NDNBOOST_ASSERT_CONFIG)
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700285# error "Unknown EVC++ compiler version - please run the configure tests and report the results"
286# else
287# pragma message("Unknown EVC++ compiler version - please run the configure tests and report the results")
288# endif
289# endif
290# else
291# if _MSC_VER < 1200
292 // Note: these are so far off, they are not really supported
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700293# define NDNBOOST_COMPILER_VERSION 5.0
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700294# elif _MSC_VER < 1300
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700295# define NDNBOOST_COMPILER_VERSION 6.0
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700296# elif _MSC_VER < 1310
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700297# define NDNBOOST_COMPILER_VERSION 7.0
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700298# elif _MSC_VER < 1400
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700299# define NDNBOOST_COMPILER_VERSION 7.1
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700300# elif _MSC_VER < 1500
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700301# define NDNBOOST_COMPILER_VERSION 8.0
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700302# elif _MSC_VER < 1600
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700303# define NDNBOOST_COMPILER_VERSION 9.0
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700304# elif _MSC_VER < 1700
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700305# define NDNBOOST_COMPILER_VERSION 10.0
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700306# elif _MSC_VER < 1800
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700307# define NDNBOOST_COMPILER_VERSION 11.0
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700308# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700309# define NDNBOOST_COMPILER_VERSION _MSC_VER
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700310# endif
311# endif
312
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700313# define NDNBOOST_COMPILER "Microsoft Visual C++ version " NDNBOOST_STRINGIZE(NDNBOOST_COMPILER_VERSION)
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700314#endif
315
316//
317// last known and checked version is 1700 (VC11, aka 2011):
318#if (_MSC_VER > 1700)
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700319# if defined(NDNBOOST_ASSERT_CONFIG)
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700320# error "Unknown compiler version - please run the configure tests and report the results"
321# else
322# pragma message("Unknown compiler version - please run the configure tests and report the results")
323# endif
324#endif