libcpp.hpp 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // (C) Copyright Christopher Jefferson 2011.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org for most recent version.
  6. // config for libc++
  7. // Might need more in here later.
  8. #if !defined(_LIBCPP_VERSION)
  9. # include <ciso646>
  10. # if !defined(_LIBCPP_VERSION)
  11. # error "This is not libc++!"
  12. # endif
  13. #endif
  14. #define BOOST_STDLIB "libc++ version " BOOST_STRINGIZE(_LIBCPP_VERSION)
  15. #define BOOST_HAS_THREADS
  16. #ifdef _LIBCPP_HAS_NO_VARIADICS
  17. # define BOOST_NO_CXX11_HDR_TUPLE
  18. #endif
  19. // BOOST_NO_CXX11_ALLOCATOR should imply no support for the C++11
  20. // allocator model. The C++11 allocator model requires a conforming
  21. // std::allocator_traits which is only possible with C++11 template
  22. // aliases since members rebind_alloc and rebind_traits require it.
  23. #if defined(_LIBCPP_HAS_NO_TEMPLATE_ALIASES)
  24. # define BOOST_NO_CXX11_ALLOCATOR
  25. #endif
  26. #if __cplusplus < 201103
  27. # define BOOST_NO_CXX11_HDR_ARRAY
  28. # define BOOST_NO_CXX11_HDR_CODECVT
  29. # define BOOST_NO_CXX11_HDR_CONDITION_VARIABLE
  30. # define BOOST_NO_CXX11_HDR_FORWARD_LIST
  31. # define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  32. # define BOOST_NO_CXX11_HDR_MUTEX
  33. # define BOOST_NO_CXX11_HDR_RANDOM
  34. # define BOOST_NO_CXX11_HDR_RATIO
  35. # define BOOST_NO_CXX11_HDR_REGEX
  36. # define BOOST_NO_CXX11_HDR_SYSTEM_ERROR
  37. # define BOOST_NO_CXX11_HDR_THREAD
  38. # define BOOST_NO_CXX11_HDR_TUPLE
  39. # define BOOST_NO_CXX11_HDR_TYPEINDEX
  40. # define BOOST_NO_CXX11_HDR_UNORDERED_MAP
  41. # define BOOST_NO_CXX11_HDR_UNORDERED_SET
  42. # define BOOST_NO_CXX11_NUMERIC_LIMITS
  43. # define BOOST_NO_CXX11_ALLOCATOR
  44. # define BOOST_NO_CXX11_SMART_PTR
  45. # define BOOST_NO_CXX11_HDR_FUNCTIONAL
  46. # define BOOST_NO_CXX11_STD_ALIGN
  47. # define BOOST_NO_CXX11_ADDRESSOF
  48. # define BOOST_NO_CXX11_HDR_ATOMIC
  49. # define BOOST_NO_CXX11_ATOMIC_SMART_PTR
  50. # define BOOST_NO_CXX11_HDR_CHRONO
  51. # define BOOST_NO_CXX11_HDR_TYPE_TRAITS
  52. # define BOOST_NO_CXX11_HDR_FUTURE
  53. #elif _LIBCPP_VERSION < 3700
  54. //
  55. // These appear to be unusable/incomplete so far:
  56. //
  57. # define BOOST_NO_CXX11_HDR_ATOMIC
  58. # define BOOST_NO_CXX11_ATOMIC_SMART_PTR
  59. # define BOOST_NO_CXX11_HDR_CHRONO
  60. # define BOOST_NO_CXX11_HDR_TYPE_TRAITS
  61. # define BOOST_NO_CXX11_HDR_FUTURE
  62. #endif
  63. #if _LIBCPP_VERSION < 3700
  64. // libc++ uses a non-standard messages_base
  65. #define BOOST_NO_STD_MESSAGES
  66. #endif
  67. #if defined(__has_include)
  68. #if !__has_include(<shared_mutex>)
  69. # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
  70. #elif __cplusplus <= 201103
  71. # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
  72. #endif
  73. #elif __cplusplus < 201402
  74. # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
  75. #endif
  76. // --- end ---