xlcpp.hpp 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. // (C) Copyright Douglas Gregor 2010
  2. //
  3. // Use, modification and distribution are subject to the
  4. // Boost Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. // See http://www.boost.org for most recent version.
  7. // compiler setup for IBM XL C/C++ for Linux (Little Endian) based on clang.
  8. #define BOOST_HAS_PRAGMA_ONCE
  9. // Detecting `-fms-extension` compiler flag assuming that _MSC_VER defined when that flag is used.
  10. #if defined (_MSC_VER) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 4))
  11. # define BOOST_HAS_PRAGMA_DETECT_MISMATCH
  12. #endif
  13. // When compiling with clang before __has_extension was defined,
  14. // even if one writes 'defined(__has_extension) && __has_extension(xxx)',
  15. // clang reports a compiler error. So the only workaround found is:
  16. #ifndef __has_extension
  17. #define __has_extension __has_feature
  18. #endif
  19. #if !__has_feature(cxx_exceptions) && !defined(BOOST_NO_EXCEPTIONS)
  20. # define BOOST_NO_EXCEPTIONS
  21. #endif
  22. #if !__has_feature(cxx_rtti) && !defined(BOOST_NO_RTTI)
  23. # define BOOST_NO_RTTI
  24. #endif
  25. #if !__has_feature(cxx_rtti) && !defined(BOOST_NO_TYPEID)
  26. # define BOOST_NO_TYPEID
  27. #endif
  28. #if defined(__int64) && !defined(__GNUC__)
  29. # define BOOST_HAS_MS_INT64
  30. #endif
  31. #define BOOST_HAS_NRVO
  32. // Branch prediction hints
  33. #if defined(__has_builtin)
  34. #if __has_builtin(__builtin_expect)
  35. #define BOOST_LIKELY(x) __builtin_expect(x, 1)
  36. #define BOOST_UNLIKELY(x) __builtin_expect(x, 0)
  37. #endif
  38. #endif
  39. // Clang supports "long long" in all compilation modes.
  40. #define BOOST_HAS_LONG_LONG
  41. //
  42. // Dynamic shared object (DSO) and dynamic-link library (DLL) support
  43. //
  44. #if !defined(_WIN32) && !defined(__WIN32__) && !defined(WIN32)
  45. # define BOOST_SYMBOL_EXPORT __attribute__((__visibility__("default")))
  46. # define BOOST_SYMBOL_IMPORT
  47. # define BOOST_SYMBOL_VISIBLE __attribute__((__visibility__("default")))
  48. #endif
  49. //
  50. // The BOOST_FALLTHROUGH macro can be used to annotate implicit fall-through
  51. // between switch labels.
  52. //
  53. #if __cplusplus >= 201103L && defined(__has_warning)
  54. # if __has_feature(cxx_attributes) && __has_warning("-Wimplicit-fallthrough")
  55. # define BOOST_FALLTHROUGH [[clang::fallthrough]]
  56. # endif
  57. #endif
  58. #if !__has_feature(cxx_auto_type)
  59. # define BOOST_NO_CXX11_AUTO_DECLARATIONS
  60. # define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
  61. #endif
  62. //
  63. // Currently clang on Windows using VC++ RTL does not support C++11's char16_t or char32_t
  64. //
  65. #if defined(_MSC_VER) || !(defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L)
  66. # define BOOST_NO_CXX11_CHAR16_T
  67. # define BOOST_NO_CXX11_CHAR32_T
  68. #endif
  69. #if !__has_feature(cxx_constexpr)
  70. # define BOOST_NO_CXX11_CONSTEXPR
  71. #endif
  72. #if !__has_feature(cxx_decltype)
  73. # define BOOST_NO_CXX11_DECLTYPE
  74. #endif
  75. #if !__has_feature(cxx_decltype_incomplete_return_types)
  76. # define BOOST_NO_CXX11_DECLTYPE_N3276
  77. #endif
  78. #if !__has_feature(cxx_defaulted_functions)
  79. # define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
  80. #endif
  81. #if !__has_feature(cxx_deleted_functions)
  82. # define BOOST_NO_CXX11_DELETED_FUNCTIONS
  83. #endif
  84. #if !__has_feature(cxx_explicit_conversions)
  85. # define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
  86. #endif
  87. #if !__has_feature(cxx_default_function_template_args)
  88. # define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
  89. #endif
  90. #if !__has_feature(cxx_generalized_initializers)
  91. # define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  92. #endif
  93. #if !__has_feature(cxx_lambdas)
  94. # define BOOST_NO_CXX11_LAMBDAS
  95. #endif
  96. #if !__has_feature(cxx_local_type_template_args)
  97. # define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
  98. #endif
  99. #if !__has_feature(cxx_noexcept)
  100. # define BOOST_NO_CXX11_NOEXCEPT
  101. #endif
  102. #if !__has_feature(cxx_nullptr)
  103. # define BOOST_NO_CXX11_NULLPTR
  104. #endif
  105. #if !__has_feature(cxx_range_for)
  106. # define BOOST_NO_CXX11_RANGE_BASED_FOR
  107. #endif
  108. #if !__has_feature(cxx_raw_string_literals)
  109. # define BOOST_NO_CXX11_RAW_LITERALS
  110. #endif
  111. #if !__has_feature(cxx_reference_qualified_functions)
  112. # define BOOST_NO_CXX11_REF_QUALIFIERS
  113. #endif
  114. #if !__has_feature(cxx_generalized_initializers)
  115. # define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  116. #endif
  117. #if !__has_feature(cxx_rvalue_references)
  118. # define BOOST_NO_CXX11_RVALUE_REFERENCES
  119. #endif
  120. #if !__has_feature(cxx_strong_enums)
  121. # define BOOST_NO_CXX11_SCOPED_ENUMS
  122. #endif
  123. #if !__has_feature(cxx_static_assert)
  124. # define BOOST_NO_CXX11_STATIC_ASSERT
  125. #endif
  126. #if !__has_feature(cxx_alias_templates)
  127. # define BOOST_NO_CXX11_TEMPLATE_ALIASES
  128. #endif
  129. #if !__has_feature(cxx_unicode_literals)
  130. # define BOOST_NO_CXX11_UNICODE_LITERALS
  131. #endif
  132. #if !__has_feature(cxx_variadic_templates)
  133. # define BOOST_NO_CXX11_VARIADIC_TEMPLATES
  134. #endif
  135. #if !__has_feature(cxx_user_literals)
  136. # define BOOST_NO_CXX11_USER_DEFINED_LITERALS
  137. #endif
  138. #if !__has_feature(cxx_alignas)
  139. # define BOOST_NO_CXX11_ALIGNAS
  140. #endif
  141. #if !__has_feature(cxx_trailing_return)
  142. # define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
  143. #endif
  144. #if !__has_feature(cxx_inline_namespaces)
  145. # define BOOST_NO_CXX11_INLINE_NAMESPACES
  146. #endif
  147. #if !__has_feature(cxx_override_control)
  148. # define BOOST_NO_CXX11_FINAL
  149. #endif
  150. #if !(__has_feature(__cxx_binary_literals__) || __has_extension(__cxx_binary_literals__))
  151. # define BOOST_NO_CXX14_BINARY_LITERALS
  152. #endif
  153. #if !__has_feature(__cxx_decltype_auto__)
  154. # define BOOST_NO_CXX14_DECLTYPE_AUTO
  155. #endif
  156. #if !__has_feature(__cxx_aggregate_nsdmi__)
  157. # define BOOST_NO_CXX14_AGGREGATE_NSDMI
  158. #endif
  159. #if !__has_feature(__cxx_init_captures__)
  160. # define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
  161. #endif
  162. #if !__has_feature(__cxx_generic_lambdas__)
  163. # define BOOST_NO_CXX14_GENERIC_LAMBDAS
  164. #endif
  165. // clang < 3.5 has a defect with dependent type, like following.
  166. //
  167. // template <class T>
  168. // constexpr typename enable_if<pred<T> >::type foo(T &)
  169. // { } // error: no return statement in constexpr function
  170. //
  171. // This issue also affects C++11 mode, but C++11 constexpr requires return stmt.
  172. // Therefore we don't care such case.
  173. //
  174. // Note that we can't check Clang version directly as the numbering system changes depending who's
  175. // creating the Clang release (see https://github.com/boostorg/config/pull/39#issuecomment-59927873)
  176. // so instead verify that we have a feature that was introduced at the same time as working C++14
  177. // constexpr (generic lambda's in this case):
  178. //
  179. #if !__has_feature(__cxx_generic_lambdas__) || !__has_feature(__cxx_relaxed_constexpr__)
  180. # define BOOST_NO_CXX14_CONSTEXPR
  181. #endif
  182. #if !__has_feature(__cxx_return_type_deduction__)
  183. # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION
  184. #endif
  185. #if !__has_feature(__cxx_variable_templates__)
  186. # define BOOST_NO_CXX14_VARIABLE_TEMPLATES
  187. #endif
  188. #if __cplusplus < 201400
  189. // All versions with __cplusplus above this value seem to support this:
  190. # define BOOST_NO_CXX14_DIGIT_SEPARATORS
  191. #endif
  192. // Unused attribute:
  193. #if defined(__GNUC__) && (__GNUC__ >= 4)
  194. # define BOOST_ATTRIBUTE_UNUSED __attribute__((unused))
  195. #endif
  196. #ifndef BOOST_COMPILER
  197. # define BOOST_COMPILER "Clang version " __clang_version__
  198. #endif
  199. // Macro used to identify the Clang compiler.
  200. #define BOOST_CLANG 1