config.hpp 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /*!
  2. @file
  3. Defines configuration macros used throughout the library.
  4. @copyright Louis Dionne 2013-2016
  5. Distributed under the Boost Software License, Version 1.0.
  6. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  7. */
  8. #ifndef BOOST_HANA_CONFIG_HPP
  9. #define BOOST_HANA_CONFIG_HPP
  10. #include <boost/hana/version.hpp>
  11. //////////////////////////////////////////////////////////////////////////////
  12. // Detect the compiler
  13. //////////////////////////////////////////////////////////////////////////////
  14. #if defined(_MSC_VER) && !defined(__clang__) // MSVC
  15. // This must be checked first, because otherwise it produces a fatal
  16. // error due to unrecognized #warning directives used below.
  17. # pragma message("Warning: the native Microsoft compiler is not supported due to lack of proper C++14 support.")
  18. #elif defined(__clang__) && defined(_MSC_VER) // Clang-cl (Clang for Windows)
  19. # define BOOST_HANA_CONFIG_CLANG BOOST_HANA_CONFIG_VERSION( \
  20. __clang_major__, __clang_minor__, __clang_patchlevel__)
  21. # if BOOST_HANA_CONFIG_CLANG < BOOST_HANA_CONFIG_VERSION(3, 5, 0)
  22. # warning "Versions of Clang prior to 3.5.0 are not supported by Hana."
  23. # endif
  24. # if _MSC_VER < 1900
  25. # warning "Clang-cl is only supported with the -fms-compatibility-version parameter set to 19 and above."
  26. # endif
  27. #elif defined(__clang__) && defined(__apple_build_version__) // Apple's Clang
  28. # if __apple_build_version__ >= 6020049
  29. # define BOOST_HANA_CONFIG_CLANG BOOST_HANA_CONFIG_VERSION(3, 6, 0)
  30. # else
  31. # warning "Versions of Apple's Clang prior to the one shipped with Xcode 6.3 are not supported by Hana."
  32. # endif
  33. #elif defined(__clang__) // genuine Clang
  34. # define BOOST_HANA_CONFIG_CLANG BOOST_HANA_CONFIG_VERSION( \
  35. __clang_major__, __clang_minor__, __clang_patchlevel__)
  36. # if BOOST_HANA_CONFIG_CLANG < BOOST_HANA_CONFIG_VERSION(3, 5, 0)
  37. # warning "Versions of Clang prior to 3.5.0 are not supported by Hana."
  38. # endif
  39. #elif defined(__GNUC__) // GCC
  40. # define BOOST_HANA_CONFIG_GCC BOOST_HANA_CONFIG_VERSION( \
  41. __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__)
  42. # if BOOST_HANA_CONFIG_GCC < BOOST_HANA_CONFIG_VERSION(6, 0, 0)
  43. # warning "Versions of GCC prior to 6.0.0 are not supported by Hana."
  44. # endif
  45. #else
  46. # warning "Your compiler is not officially supported by Hana or it was not detected properly."
  47. #endif
  48. //////////////////////////////////////////////////////////////////////////////
  49. // Check the compiler for general C++14 capabilities
  50. //////////////////////////////////////////////////////////////////////////////
  51. #if (__cplusplus < 201400)
  52. # warning "Your compiler doesn't provide C++14 or higher capabilities. Try adding the compiler flag '-std=c++14' or '-std=c++1y'."
  53. #endif
  54. //////////////////////////////////////////////////////////////////////////////
  55. // Detect the standard library
  56. //////////////////////////////////////////////////////////////////////////////
  57. // We include this header, which normally defines the proper detection macros.
  58. // At least, libc++ and libstdc++ do.
  59. #include <cstddef>
  60. #if defined(_LIBCPP_VERSION)
  61. # define BOOST_HANA_CONFIG_LIBCPP BOOST_HANA_CONFIG_VERSION( \
  62. ((_LIBCPP_VERSION) / 1000) % 10, 0, (_LIBCPP_VERSION) % 1000)
  63. # if BOOST_HANA_CONFIG_LIBCPP < BOOST_HANA_CONFIG_VERSION(1, 0, 101)
  64. # warning "Versions of libc++ prior to the one shipped with Clang 3.5.0 are not supported by Hana."
  65. # endif
  66. #elif defined(__GLIBCXX__)
  67. // We do not define a macro to keep track of libstdc++'s version, because
  68. // we have no scalable way of associating a value of __GLIBCXX__ to the
  69. // corresponding GCC release. Instead, we just check that the release date
  70. // of the libstdc++ in use is recent enough, which should indicate that it
  71. // was released with a GCC >= 5.1, which in turn indicates good enough C++14
  72. // support.
  73. # if __GLIBCXX__ < 20150422 // --> the libstdc++ shipped with GCC 5.1.0
  74. # warning "Versions of libstdc++ prior to the one shipped with GCC 5.1.0 are not supported by Hana for lack of full C++14 support."
  75. # endif
  76. # define BOOST_HANA_CONFIG_LIBSTDCXX
  77. #elif defined(_MSC_VER)
  78. # define BOOST_HANA_CONFIG_LIBMSVCCXX
  79. #else
  80. # warning "Your standard library is not officially supported by Hana or it was not detected properly."
  81. #endif
  82. //////////////////////////////////////////////////////////////////////////////
  83. // Caveats and other compiler-dependent options
  84. //////////////////////////////////////////////////////////////////////////////
  85. // BOOST_HANA_CONFIG_HAS_CONSTEXPR_LAMBDA enables some constructs requiring
  86. // `constexpr` lambdas, which are not in the language (yet).
  87. // Currently always disabled.
  88. //
  89. // BOOST_HANA_CONSTEXPR_LAMBDA expands to `constexpr` if constexpr lambdas
  90. // are supported and to nothing otherwise.
  91. #if 0
  92. # define BOOST_HANA_CONFIG_HAS_CONSTEXPR_LAMBDA
  93. # define BOOST_HANA_CONSTEXPR_LAMBDA constexpr
  94. #else
  95. # define BOOST_HANA_CONSTEXPR_LAMBDA /* nothing */
  96. #endif
  97. // The std::tuple adapter is broken on libc++ prior to the one shipped
  98. // with Clang 3.7.0.
  99. #if defined(BOOST_HANA_CONFIG_LIBCPP) && \
  100. BOOST_HANA_CONFIG_LIBCPP < BOOST_HANA_CONFIG_VERSION(1, 0, 101)
  101. # define BOOST_HANA_CONFIG_HAS_NO_STD_TUPLE_ADAPTER
  102. #endif
  103. // There's a bug in std::tuple_cat in libc++ right now.
  104. // See http://llvm.org/bugs/show_bug.cgi?id=22806.
  105. #if defined(BOOST_HANA_CONFIG_LIBCPP)
  106. # define BOOST_HANA_CONFIG_LIBCPP_HAS_BUG_22806
  107. #endif
  108. //////////////////////////////////////////////////////////////////////////////
  109. // Namespace macros
  110. //////////////////////////////////////////////////////////////////////////////
  111. #define BOOST_HANA_NAMESPACE_BEGIN namespace boost { namespace hana {
  112. #define BOOST_HANA_NAMESPACE_END }}
  113. //////////////////////////////////////////////////////////////////////////////
  114. // Library features and options that can be tweaked by users
  115. //////////////////////////////////////////////////////////////////////////////
  116. #if defined(BOOST_HANA_DOXYGEN_INVOKED) || \
  117. (defined(NDEBUG) && !defined(BOOST_HANA_CONFIG_DISABLE_ASSERTIONS))
  118. //! @ingroup group-config
  119. //! Disables the `BOOST_HANA_*_ASSERT` macro & friends.
  120. //!
  121. //! When this macro is defined, the `BOOST_HANA_*_ASSERT` macro & friends
  122. //! are disabled, i.e. they expand to nothing.
  123. //!
  124. //! This macro is defined automatically when `NDEBUG` is defined. It can
  125. //! also be defined by users before including this header or defined on
  126. //! the command line.
  127. # define BOOST_HANA_CONFIG_DISABLE_ASSERTIONS
  128. #endif
  129. #if defined(BOOST_HANA_DOXYGEN_INVOKED)
  130. //! @ingroup group-config
  131. //! Disables concept checks in interface methods.
  132. //!
  133. //! When this macro is not defined (the default), tag-dispatched methods
  134. //! will make sure the arguments they are passed are models of the proper
  135. //! concept(s). This can be very helpful in catching programming errors,
  136. //! but it is also slightly less compile-time efficient. You should
  137. //! probably always leave the checks enabled (and hence never define this
  138. //! macro), except perhaps in translation units that are compiled very
  139. //! often but whose code using Hana is modified very rarely.
  140. # define BOOST_HANA_CONFIG_DISABLE_CONCEPT_CHECKS
  141. #endif
  142. #if defined(BOOST_HANA_DOXYGEN_INVOKED)
  143. //! @ingroup group-config
  144. //! Enables usage of the "string literal operator template" GNU extension.
  145. //!
  146. //! That operator is not part of the language yet, but it is supported by
  147. //! both Clang and GCC. This operator allows Hana to provide the nice `_s`
  148. //! user-defined literal for creating compile-time strings.
  149. //!
  150. //! When this macro is not defined, the GNU extension will be not used
  151. //! by Hana. Because this is a non-standard extension, the macro is not
  152. //! defined by default.
  153. # define BOOST_HANA_CONFIG_ENABLE_STRING_UDL
  154. #endif
  155. #if defined(BOOST_HANA_DOXYGEN_INVOKED)
  156. //! @ingroup group-config
  157. //! Enables additional assertions and sanity checks to be done by Hana.
  158. //!
  159. //! When this macro is defined (it is __not defined__ by default),
  160. //! additional sanity checks may be done by Hana. These checks may
  161. //! be costly to perform, either in terms of compilation time or in
  162. //! terms of execution time. These checks may help debugging an
  163. //! application during its initial development, but they should not
  164. //! be enabled as part of the normal configuration.
  165. # define BOOST_HANA_CONFIG_ENABLE_DEBUG_MODE
  166. #endif
  167. #endif // !BOOST_HANA_CONFIG_HPP