1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
// (C) Copyright John Maddock 2001 - 2003.
// (C) Copyright Darin Adler 2001 - 2002.
// (C) Copyright Peter Dimov 2001.
// (C) Copyright Aleksey Gurtovoy 2002.
// (C) Copyright David Abrahams 2002 - 2003.
// (C) Copyright Beman Dawes 2002 - 2003.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// See http://www.boost.org for most recent version.
// Microsoft Visual C++ compiler setup:
#define GECODE_BOOST_MSVC _MSC_VER
#if _MSC_FULL_VER > 100000000
# define GECODE_BOOST_MSVC_FULL_VER _MSC_FULL_VER
#else
# define GECODE_BOOST_MSVC_FULL_VER (_MSC_FULL_VER * 10)
#endif
// turn off the warnings before we #include anything
#pragma warning( disable : 4503 ) // warning: decorated name length exceeded
#if _MSC_VER < 1300 // 1200 == VC++ 6.0, 1200-1202 == eVC++4
# pragma warning( disable : 4786 ) // ident trunc to '255' chars in debug info
# define GECODE_BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
# define GECODE_BOOST_NO_VOID_RETURNS
# define GECODE_BOOST_NO_EXCEPTION_STD_NAMESPACE
# if GECODE_BOOST_MSVC == 1202
# define GECODE_BOOST_NO_STD_TYPEINFO
# endif
// disable min/max macro defines on vc6:
//
#endif
/// Visual Studio has no fenv.h
#define GECODE_BOOST_NO_FENV_H
#if (_MSC_VER <= 1300) // 1300 == VC++ 7.0
# if !defined(_MSC_EXTENSIONS) && !defined(GECODE_BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS) // VC7 bug with /Za
# define GECODE_BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
# endif
# define GECODE_BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
# define GECODE_BOOST_NO_INCLASS_MEMBER_INITIALIZATION
# define GECODE_BOOST_NO_PRIVATE_IN_AGGREGATE
# define GECODE_BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
# define GECODE_BOOST_NO_INTEGRAL_INT64_T
# define GECODE_BOOST_NO_DEDUCED_TYPENAME
# define GECODE_BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
// VC++ 6/7 has member templates but they have numerous problems including
// cases of silent failure, so for safety we define:
# define GECODE_BOOST_NO_MEMBER_TEMPLATES
// For VC++ experts wishing to attempt workarounds, we define:
# define GECODE_BOOST_MSVC6_MEMBER_TEMPLATES
# define GECODE_BOOST_NO_MEMBER_TEMPLATE_FRIENDS
# define GECODE_BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
# define GECODE_BOOST_NO_CV_VOID_SPECIALIZATIONS
# define GECODE_BOOST_NO_FUNCTION_TEMPLATE_ORDERING
# define GECODE_BOOST_NO_USING_TEMPLATE
# define GECODE_BOOST_NO_SWPRINTF
# define GECODE_BOOST_NO_TEMPLATE_TEMPLATES
# define GECODE_BOOST_NO_SFINAE
# define GECODE_BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
# define GECODE_BOOST_NO_IS_ABSTRACT
# define GECODE_BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS
// TODO: what version is meant here? Have there really been any fixes in cl 12.01 (as e.g. shipped with eVC4)?
# if (_MSC_VER > 1200)
# define GECODE_BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
# endif
#endif
#if _MSC_VER < 1400
// although a conforming signature for swprint exists in VC7.1
// it appears not to actually work:
# define GECODE_BOOST_NO_SWPRINTF
// Our extern template tests also fail for this compiler:
# define GECODE_BOOST_NO_EXTERN_TEMPLATE
// Variadic macros do not exist for VC7.1 and lower
# define GECODE_BOOST_NO_VARIADIC_MACROS
#endif
#if defined(UNDER_CE)
// Windows CE does not have a conforming signature for swprintf
# define GECODE_BOOST_NO_SWPRINTF
#endif
#if _MSC_VER <= 1400 // 1400 == VC++ 8.0
# define GECODE_BOOST_NO_MEMBER_TEMPLATE_FRIENDS
#endif
#if _MSC_VER == 1500 // 1500 == VC++ 9.0
// A bug in VC9:
# define GECODE_BOOST_NO_ADL_BARRIER
#endif
#if (_MSC_VER <= 1600)
// MSVC (including the latest checked version) has not yet completely
// implemented value-initialization, as is reported:
// "VC++ does not value-initialize members of derived classes without
// user-declared constructor", reported in 2009 by Sylvester Hesp:
// https://connect.microsoft.com/VisualStudio/feedback/details/484295
// "Presence of copy constructor breaks member class initialization",
// reported in 2009 by Alex Vakulenko:
// https://connect.microsoft.com/VisualStudio/feedback/details/499606
// "Value-initialization in new-expression", reported in 2005 by
// Pavel Kuznetsov (MetaCommunications Engineering):
// https://connect.microsoft.com/VisualStudio/feedback/details/100744
// See also: http://www.boost.org/libs/utility/value_init.htm#compiler_issues
// (Niels Dekker, LKEB, May 2010)
#define GECODE_BOOST_NO_COMPLETE_VALUE_INITIALIZATION
#endif
#if _MSC_VER <= 1500 || !defined(GECODE_BOOST_STRICT_CONFIG) // 1500 == VC++ 9.0
# define GECODE_BOOST_NO_INITIALIZER_LISTS
#endif
#ifndef _NATIVE_WCHAR_T_DEFINED
# define GECODE_BOOST_NO_INTRINSIC_WCHAR_T
#endif
#if defined(_WIN32_WCE) || defined(UNDER_CE)
# define GECODE_BOOST_NO_SWPRINTF
#endif
// we have ThreadEx or GetSystemTimeAsFileTime unless we're running WindowsCE
#if !defined(_WIN32_WCE) && !defined(UNDER_CE)
# define GECODE_BOOST_HAS_THREADEX
# define GECODE_BOOST_HAS_GETSYSTEMTIMEASFILETIME
#endif
//
// check for exception handling support:
#if !defined(_CPPUNWIND) && !defined(GECODE_BOOST_NO_EXCEPTIONS)
# define GECODE_BOOST_NO_EXCEPTIONS
#endif
//
// __int64 support:
//
#if (_MSC_VER >= 1200)
# define GECODE_BOOST_HAS_MS_INT64
#endif
#if (_MSC_VER >= 1310) && (defined(_MSC_EXTENSIONS) || (_MSC_VER >= 1400))
# define GECODE_BOOST_HAS_LONG_LONG
#else
# define GECODE_BOOST_NO_LONG_LONG
#endif
#if (_MSC_VER >= 1400) && !defined(_DEBUG)
# define GECODE_BOOST_HAS_NRVO
#endif
//
// disable Win32 API's if compiler extentions are
// turned off:
//
#if !defined(_MSC_EXTENSIONS) && !defined(GECODE_BOOST_DISABLE_WIN32)
# define GECODE_BOOST_DISABLE_WIN32
#endif
#if !defined(_CPPRTTI) && !defined(GECODE_BOOST_NO_RTTI)
# define GECODE_BOOST_NO_RTTI
#endif
//
// C++0x features
//
// See above for GECODE_BOOST_NO_LONG_LONG
// C++ features supported by VC++ 10 (aka 2010)
//
#if _MSC_VER < 1600
#define GECODE_BOOST_NO_AUTO_DECLARATIONS
#define GECODE_BOOST_NO_AUTO_MULTIDECLARATIONS
#define GECODE_BOOST_NO_LAMBDAS
#define GECODE_BOOST_NO_RVALUE_REFERENCES
#define GECODE_BOOST_NO_STATIC_ASSERT
#define GECODE_BOOST_NO_NULLPTR
#define GECODE_BOOST_NO_DECLTYPE
#endif // _MSC_VER < 1600
#if _MSC_VER >= 1600
#define GECODE_BOOST_HAS_STDINT_H
#endif
// C++0x features not supported by any versions
#define GECODE_BOOST_NO_CHAR16_T
#define GECODE_BOOST_NO_CHAR32_T
#define GECODE_BOOST_NO_CONSTEXPR
#define GECODE_BOOST_NO_DEFAULTED_FUNCTIONS
#define GECODE_BOOST_NO_DELETED_FUNCTIONS
#define GECODE_BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
#define GECODE_BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
#define GECODE_BOOST_NO_INITIALIZER_LISTS
#define GECODE_BOOST_NO_NOEXCEPT
#define GECODE_BOOST_NO_RAW_LITERALS
#define GECODE_BOOST_NO_SCOPED_ENUMS
#define GECODE_BOOST_NO_TEMPLATE_ALIASES
#define GECODE_BOOST_NO_UNICODE_LITERALS
#define GECODE_BOOST_NO_VARIADIC_TEMPLATES
#define GECODE_BOOST_NO_SFINAE_EXPR
#define GECODE_BOOST_NO_TWO_PHASE_NAME_LOOKUP
#define GECODE_BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
//
// prefix and suffix headers:
//
#ifndef GECODE_BOOST_ABI_PREFIX
# define GECODE_BOOST_ABI_PREFIX "gecode/third-party/boost/config/abi/msvc_prefix.hpp"
#endif
#ifndef GECODE_BOOST_ABI_SUFFIX
# define GECODE_BOOST_ABI_SUFFIX "gecode/third-party/boost/config/abi/msvc_suffix.hpp"
#endif
// TODO:
// these things are mostly bogus. 1200 means version 12.0 of the compiler. The
// artificial versions assigned to them only refer to the versions of some IDE
// these compilers have been shipped with, and even that is not all of it. Some
// were shipped with freely downloadable SDKs, others as crosscompilers in eVC.
// IOW, you can't use these 'versions' in any sensible way. Sorry.
# if defined(UNDER_CE)
# if _MSC_VER < 1200
// Note: these are so far off, they are not really supported
# elif _MSC_VER < 1300 // eVC++ 4 comes with 1200-1202
# define GECODE_BOOST_COMPILER_VERSION evc4.0
# elif _MSC_VER == 1400
# define GECODE_BOOST_COMPILER_VERSION evc8
# elif _MSC_VER == 1500
# define GECODE_BOOST_COMPILER_VERSION evc9
# elif _MSC_VER == 1600
# define GECODE_BOOST_COMPILER_VERSION evc10
# else
# if defined(GECODE_BOOST_ASSERT_CONFIG)
# error "Unknown EVC++ compiler version - please run the configure tests and report the results"
# else
# pragma message("Unknown EVC++ compiler version - please run the configure tests and report the results")
# endif
# endif
# else
# if _MSC_VER < 1200
// Note: these are so far off, they are not really supported
# define GECODE_BOOST_COMPILER_VERSION 5.0
# elif _MSC_VER < 1300
# define GECODE_BOOST_COMPILER_VERSION 6.0
# elif _MSC_VER == 1300
# define GECODE_BOOST_COMPILER_VERSION 7.0
# elif _MSC_VER == 1310
# define GECODE_BOOST_COMPILER_VERSION 7.1
# elif _MSC_VER == 1400
# define GECODE_BOOST_COMPILER_VERSION 8.0
# elif _MSC_VER == 1500
# define GECODE_BOOST_COMPILER_VERSION 9.0
# elif _MSC_VER == 1600
# define GECODE_BOOST_COMPILER_VERSION 10.0
# else
# define GECODE_BOOST_COMPILER_VERSION _MSC_VER
# endif
# endif
#define GECODE_BOOST_COMPILER "Microsoft Visual C++ version " GECODE_BOOST_STRINGIZE(GECODE_BOOST_COMPILER_VERSION)
//
// versions check:
// we don't support Visual C++ prior to version 6:
#if _MSC_VER < 1200
#error "Compiler not supported or configured - please reconfigure"
#endif
//
// last known and checked version is 1600 (VC10, aka 2010):
// Changed to VC15, aka 2017
#if (_MSC_VER > 2000)
# if defined(GECODE_BOOST_ASSERT_CONFIG)
# error "Unknown compiler version - please run the configure tests and report the results"
# else
# pragma message("Unknown compiler version - please run the configure tests and report the results")
# endif
#endif
|