codegear.hpp 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. // (C) Copyright John Maddock 2001 - 2003.
  2. // (C) Copyright David Abrahams 2002 - 2003.
  3. // (C) Copyright Aleksey Gurtovoy 2002.
  4. // Use, modification and distribution are subject to the
  5. // Boost Software License, Version 1.0. (See accompanying file
  6. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. // See http://www.boost.org for most recent version.
  8. // CodeGear C++ compiler setup:
  9. #if !defined( BOOST_WITH_CODEGEAR_WARNINGS )
  10. // these warnings occur frequently in optimized template code
  11. # pragma warn -8004 // var assigned value, but never used
  12. # pragma warn -8008 // condition always true/false
  13. # pragma warn -8066 // dead code can never execute
  14. # pragma warn -8104 // static members with ctors not threadsafe
  15. # pragma warn -8105 // reference member in class without ctors
  16. #endif
  17. //
  18. // versions check:
  19. // last known and checked version is 0x621
  20. #if (__CODEGEARC__ > 0x621)
  21. # if defined(BOOST_ASSERT_CONFIG)
  22. # error "Unknown compiler version - please run the configure tests and report the results"
  23. # else
  24. # pragma message( "Unknown compiler version - please run the configure tests and report the results")
  25. # endif
  26. #endif
  27. // CodeGear C++ Builder 2009
  28. #if (__CODEGEARC__ <= 0x613)
  29. # define BOOST_NO_INTEGRAL_INT64_T
  30. # define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
  31. # define BOOST_NO_PRIVATE_IN_AGGREGATE
  32. # define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
  33. // we shouldn't really need this - but too many things choke
  34. // without it, this needs more investigation:
  35. # define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
  36. # define BOOST_SP_NO_SP_CONVERTIBLE
  37. #endif
  38. // CodeGear C++ Builder 2010
  39. #if (__CODEGEARC__ <= 0x621)
  40. # define BOOST_NO_TYPENAME_WITH_CTOR // Cannot use typename keyword when making temporaries of a dependant type
  41. # define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
  42. # define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
  43. # define BOOST_NO_NESTED_FRIENDSHIP // TC1 gives nested classes access rights as any other member
  44. # define BOOST_NO_USING_TEMPLATE
  45. # define BOOST_NO_TWO_PHASE_NAME_LOOKUP
  46. // Temporary hack, until specific MPL preprocessed headers are generated
  47. # define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
  48. // CodeGear has not yet completely implemented value-initialization, for
  49. // example for array types, as I reported in 2010: Embarcadero Report 83751,
  50. // "Value-initialization: arrays should have each element value-initialized",
  51. // http://qc.embarcadero.com/wc/qcmain.aspx?d=83751
  52. // Last checked version: Embarcadero C++ 6.21
  53. // See also: http://www.boost.org/libs/utility/value_init.htm#compiler_issues
  54. // (Niels Dekker, LKEB, April 2010)
  55. # define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
  56. # if defined(NDEBUG) && defined(__cplusplus)
  57. // fix broken <cstring> so that Boost.test works:
  58. # include <cstring>
  59. # undef strcmp
  60. # endif
  61. // fix broken errno declaration:
  62. # include <errno.h>
  63. # ifndef errno
  64. # define errno errno
  65. # endif
  66. #endif
  67. // Reportedly, #pragma once is supported since C++ Builder 2010
  68. #if (__CODEGEARC__ >= 0x620)
  69. # define BOOST_HAS_PRAGMA_ONCE
  70. #endif
  71. //
  72. // C++0x macros:
  73. //
  74. #if (__CODEGEARC__ <= 0x620)
  75. #define BOOST_NO_CXX11_STATIC_ASSERT
  76. #else
  77. #define BOOST_HAS_STATIC_ASSERT
  78. #endif
  79. #define BOOST_HAS_CHAR16_T
  80. #define BOOST_HAS_CHAR32_T
  81. #define BOOST_HAS_LONG_LONG
  82. // #define BOOST_HAS_ALIGNOF
  83. #define BOOST_HAS_DECLTYPE
  84. #define BOOST_HAS_EXPLICIT_CONVERSION_OPS
  85. // #define BOOST_HAS_RVALUE_REFS
  86. #define BOOST_HAS_SCOPED_ENUM
  87. // #define BOOST_HAS_STATIC_ASSERT
  88. #define BOOST_HAS_STD_TYPE_TRAITS
  89. #define BOOST_NO_CXX11_AUTO_DECLARATIONS
  90. #define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
  91. #define BOOST_NO_CXX11_CONSTEXPR
  92. #define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
  93. #define BOOST_NO_CXX11_DELETED_FUNCTIONS
  94. #define BOOST_NO_CXX11_EXTERN_TEMPLATE
  95. #define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
  96. #define BOOST_NO_CXX11_LAMBDAS
  97. #define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
  98. #define BOOST_NO_CXX11_NOEXCEPT
  99. #define BOOST_NO_CXX11_NULLPTR
  100. #define BOOST_NO_CXX11_RANGE_BASED_FOR
  101. #define BOOST_NO_CXX11_RAW_LITERALS
  102. #define BOOST_NO_CXX11_RVALUE_REFERENCES
  103. #define BOOST_NO_SFINAE_EXPR
  104. #define BOOST_NO_CXX11_TEMPLATE_ALIASES
  105. #define BOOST_NO_CXX11_UNICODE_LITERALS
  106. #define BOOST_NO_CXX11_VARIADIC_TEMPLATES
  107. #define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  108. #define BOOST_NO_CXX11_USER_DEFINED_LITERALS
  109. #define BOOST_NO_CXX11_ALIGNAS
  110. #define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
  111. #define BOOST_NO_CXX11_INLINE_NAMESPACES
  112. #define BOOST_NO_CXX11_REF_QUALIFIERS
  113. #define BOOST_NO_CXX11_FINAL
  114. // C++ 14:
  115. #if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304)
  116. # define BOOST_NO_CXX14_AGGREGATE_NSDMI
  117. #endif
  118. #if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304)
  119. # define BOOST_NO_CXX14_BINARY_LITERALS
  120. #endif
  121. #if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304)
  122. # define BOOST_NO_CXX14_CONSTEXPR
  123. #endif
  124. #if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304)
  125. # define BOOST_NO_CXX14_DECLTYPE_AUTO
  126. #endif
  127. #if (__cplusplus < 201304) // There's no SD6 check for this....
  128. # define BOOST_NO_CXX14_DIGIT_SEPARATORS
  129. #endif
  130. #if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304)
  131. # define BOOST_NO_CXX14_GENERIC_LAMBDAS
  132. #endif
  133. #if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304)
  134. # define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
  135. #endif
  136. #if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304)
  137. # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION
  138. #endif
  139. #if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304)
  140. # define BOOST_NO_CXX14_VARIABLE_TEMPLATES
  141. #endif
  142. //
  143. // TR1 macros:
  144. //
  145. #define BOOST_HAS_TR1_HASH
  146. #define BOOST_HAS_TR1_TYPE_TRAITS
  147. #define BOOST_HAS_TR1_UNORDERED_MAP
  148. #define BOOST_HAS_TR1_UNORDERED_SET
  149. #define BOOST_HAS_MACRO_USE_FACET
  150. #define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  151. // On non-Win32 platforms let the platform config figure this out:
  152. #ifdef _WIN32
  153. # define BOOST_HAS_STDINT_H
  154. #endif
  155. //
  156. // __int64:
  157. //
  158. #if !defined(__STRICT_ANSI__)
  159. # define BOOST_HAS_MS_INT64
  160. #endif
  161. //
  162. // check for exception handling support:
  163. //
  164. #if !defined(_CPPUNWIND) && !defined(BOOST_CPPUNWIND) && !defined(__EXCEPTIONS) && !defined(BOOST_NO_EXCEPTIONS)
  165. # define BOOST_NO_EXCEPTIONS
  166. #endif
  167. //
  168. // all versions have a <dirent.h>:
  169. //
  170. #if !defined(__STRICT_ANSI__)
  171. # define BOOST_HAS_DIRENT_H
  172. #endif
  173. //
  174. // all versions support __declspec:
  175. //
  176. #if defined(__STRICT_ANSI__)
  177. // config/platform/win32.hpp will define BOOST_SYMBOL_EXPORT, etc., unless already defined
  178. # define BOOST_SYMBOL_EXPORT
  179. #endif
  180. //
  181. // ABI fixing headers:
  182. //
  183. #ifndef BOOST_ABI_PREFIX
  184. # define BOOST_ABI_PREFIX "boost/config/abi/borland_prefix.hpp"
  185. #endif
  186. #ifndef BOOST_ABI_SUFFIX
  187. # define BOOST_ABI_SUFFIX "boost/config/abi/borland_suffix.hpp"
  188. #endif
  189. //
  190. // Disable Win32 support in ANSI mode:
  191. //
  192. # pragma defineonoption BOOST_DISABLE_WIN32 -A
  193. //
  194. // MSVC compatibility mode does some nasty things:
  195. // TODO: look up if this doesn't apply to the whole 12xx range
  196. //
  197. #if defined(_MSC_VER) && (_MSC_VER <= 1200)
  198. # define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
  199. # define BOOST_NO_VOID_RETURNS
  200. #endif
  201. #define BOOST_COMPILER "CodeGear C++ version " BOOST_STRINGIZE(__CODEGEARC__)