libstdcpp3.hpp 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. // (C) Copyright John Maddock 2001.
  2. // (C) Copyright Jens Maurer 2001.
  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. // config for libstdc++ v3
  8. // not much to go in here:
  9. #define BOOST_GNU_STDLIB 1
  10. #ifdef __GLIBCXX__
  11. #define BOOST_STDLIB "GNU libstdc++ version " BOOST_STRINGIZE(__GLIBCXX__)
  12. #else
  13. #define BOOST_STDLIB "GNU libstdc++ version " BOOST_STRINGIZE(__GLIBCPP__)
  14. #endif
  15. #if !defined(_GLIBCPP_USE_WCHAR_T) && !defined(_GLIBCXX_USE_WCHAR_T)
  16. # define BOOST_NO_CWCHAR
  17. # define BOOST_NO_CWCTYPE
  18. # define BOOST_NO_STD_WSTRING
  19. # define BOOST_NO_STD_WSTREAMBUF
  20. #endif
  21. #if defined(__osf__) && !defined(_REENTRANT) \
  22. && ( defined(_GLIBCXX_HAVE_GTHR_DEFAULT) || defined(_GLIBCPP_HAVE_GTHR_DEFAULT) )
  23. // GCC 3 on Tru64 forces the definition of _REENTRANT when any std lib header
  24. // file is included, therefore for consistency we define it here as well.
  25. # define _REENTRANT
  26. #endif
  27. #ifdef __GLIBCXX__ // gcc 3.4 and greater:
  28. # if defined(_GLIBCXX_HAVE_GTHR_DEFAULT) \
  29. || defined(_GLIBCXX__PTHREADS) \
  30. || defined(_GLIBCXX_HAS_GTHREADS) \
  31. || defined(_WIN32) \
  32. || defined(_AIX) \
  33. || defined(__HAIKU__)
  34. //
  35. // If the std lib has thread support turned on, then turn it on in Boost
  36. // as well. We do this because some gcc-3.4 std lib headers define _REENTANT
  37. // while others do not...
  38. //
  39. # define BOOST_HAS_THREADS
  40. # else
  41. # define BOOST_DISABLE_THREADS
  42. # endif
  43. #elif defined(__GLIBCPP__) \
  44. && !defined(_GLIBCPP_HAVE_GTHR_DEFAULT) \
  45. && !defined(_GLIBCPP__PTHREADS)
  46. // disable thread support if the std lib was built single threaded:
  47. # define BOOST_DISABLE_THREADS
  48. #endif
  49. #if (defined(linux) || defined(__linux) || defined(__linux__)) && defined(__arm__) && defined(_GLIBCPP_HAVE_GTHR_DEFAULT)
  50. // linux on arm apparently doesn't define _REENTRANT
  51. // so just turn on threading support whenever the std lib is thread safe:
  52. # define BOOST_HAS_THREADS
  53. #endif
  54. #if !defined(_GLIBCPP_USE_LONG_LONG) \
  55. && !defined(_GLIBCXX_USE_LONG_LONG)\
  56. && defined(BOOST_HAS_LONG_LONG)
  57. // May have been set by compiler/*.hpp, but "long long" without library
  58. // support is useless.
  59. # undef BOOST_HAS_LONG_LONG
  60. #endif
  61. // Apple doesn't seem to reliably defined a *unix* macro
  62. #if !defined(CYGWIN) && ( defined(__unix__) \
  63. || defined(__unix) \
  64. || defined(unix) \
  65. || defined(__APPLE__) \
  66. || defined(__APPLE) \
  67. || defined(APPLE))
  68. # include <unistd.h>
  69. #endif
  70. #if defined(__GLIBCXX__) || (defined(__GLIBCPP__) && __GLIBCPP__>=20020514) // GCC >= 3.1.0
  71. # define BOOST_STD_EXTENSION_NAMESPACE __gnu_cxx
  72. # define BOOST_HAS_SLIST
  73. # define BOOST_HAS_HASH
  74. # define BOOST_SLIST_HEADER <ext/slist>
  75. # if !defined(__GNUC__) || __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 3)
  76. # define BOOST_HASH_SET_HEADER <ext/hash_set>
  77. # define BOOST_HASH_MAP_HEADER <ext/hash_map>
  78. # else
  79. # define BOOST_HASH_SET_HEADER <backward/hash_set>
  80. # define BOOST_HASH_MAP_HEADER <backward/hash_map>
  81. # endif
  82. #endif
  83. //
  84. // Decide whether we have C++11 support turned on:
  85. //
  86. #if defined(__GXX_EXPERIMENTAL_CXX0X__) || (__cplusplus >= 201103)
  87. # define BOOST_LIBSTDCXX11
  88. #endif
  89. //
  90. // Decide which version of libstdc++ we have, normally
  91. // stdlibc++ C++0x support is detected via __GNUC__, __GNUC_MINOR__, and possibly
  92. // __GNUC_PATCHLEVEL__ at the suggestion of Jonathan Wakely, one of the stdlibc++
  93. // developers. He also commented:
  94. //
  95. // "I'm not sure how useful __GLIBCXX__ is for your purposes, for instance in
  96. // GCC 4.2.4 it is set to 20080519 but in GCC 4.3.0 it is set to 20080305.
  97. // Although 4.3.0 was released earlier than 4.2.4, it has better C++0x support
  98. // than any release in the 4.2 series."
  99. //
  100. // Another resource for understanding stdlibc++ features is:
  101. // http://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#manual.intro.status.standard.200x
  102. //
  103. // However, using the GCC version number fails when the compiler is clang since this
  104. // only ever claims to emulate GCC-4.2, see https://svn.boost.org/trac/boost/ticket/7473
  105. // for a long discussion on this issue. What we can do though is use clang's __has_include
  106. // to detect the presence of a C++11 header that was introduced with a specific GCC release.
  107. // We still have to be careful though as many such headers were buggy and/or incomplete when
  108. // first introduced, so we only check for headers that were fully featured from day 1, and then
  109. // use that to infer the underlying GCC version:
  110. //
  111. #ifdef __clang__
  112. #if __has_include(<experimental/any>)
  113. # define BOOST_LIBSTDCXX_VERSION 50100
  114. #elif __has_include(<shared_mutex>)
  115. # define BOOST_LIBSTDCXX_VERSION 40900
  116. #elif __has_include(<ext/cmath>)
  117. # define BOOST_LIBSTDCXX_VERSION 40800
  118. #elif __has_include(<scoped_allocator>)
  119. # define BOOST_LIBSTDCXX_VERSION 40700
  120. #elif __has_include(<typeindex>)
  121. # define BOOST_LIBSTDCXX_VERSION 40600
  122. #elif __has_include(<future>)
  123. # define BOOST_LIBSTDCXX_VERSION 40500
  124. #elif __has_include(<ratio>)
  125. # define BOOST_LIBSTDCXX_VERSION 40400
  126. #elif __has_include(<array>)
  127. # define BOOST_LIBSTDCXX_VERSION 40300
  128. #endif
  129. //
  130. // GCC 4.8 and 9 add working versions of <atomic> and <regex> respectively.
  131. // However, we have no test for these as the headers were present but broken
  132. // in early GCC versions.
  133. //
  134. #endif
  135. #if defined(__SUNPRO_CC) && (__SUNPRO_CC >= 0x5130) && (__cplusplus >= 201103L)
  136. //
  137. // Oracle Solaris compiler uses it's own verison of libstdc++ but doesn't
  138. // set __GNUC__
  139. //
  140. #define BOOST_LIBSTDCXX_VERSION 40800
  141. #endif
  142. #if !defined(BOOST_LIBSTDCXX_VERSION)
  143. # define BOOST_LIBSTDCXX_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
  144. #endif
  145. // C++0x headers in GCC 4.3.0 and later
  146. //
  147. #if (BOOST_LIBSTDCXX_VERSION < 40300) || !defined(BOOST_LIBSTDCXX11)
  148. # define BOOST_NO_CXX11_HDR_ARRAY
  149. # define BOOST_NO_CXX11_HDR_TUPLE
  150. # define BOOST_NO_CXX11_HDR_UNORDERED_MAP
  151. # define BOOST_NO_CXX11_HDR_UNORDERED_SET
  152. # define BOOST_NO_CXX11_HDR_FUNCTIONAL
  153. #endif
  154. // C++0x headers in GCC 4.4.0 and later
  155. //
  156. #if (BOOST_LIBSTDCXX_VERSION < 40400) || !defined(BOOST_LIBSTDCXX11)
  157. # define BOOST_NO_CXX11_HDR_CONDITION_VARIABLE
  158. # define BOOST_NO_CXX11_HDR_FORWARD_LIST
  159. # define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  160. # define BOOST_NO_CXX11_HDR_MUTEX
  161. # define BOOST_NO_CXX11_HDR_RATIO
  162. # define BOOST_NO_CXX11_HDR_SYSTEM_ERROR
  163. # define BOOST_NO_CXX11_SMART_PTR
  164. #else
  165. # define BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG
  166. # define BOOST_HAS_TR1_COMPLEX_OVERLOADS
  167. #endif
  168. // C++0x features in GCC 4.5.0 and later
  169. //
  170. #if (BOOST_LIBSTDCXX_VERSION < 40500) || !defined(BOOST_LIBSTDCXX11)
  171. # define BOOST_NO_CXX11_NUMERIC_LIMITS
  172. # define BOOST_NO_CXX11_HDR_FUTURE
  173. # define BOOST_NO_CXX11_HDR_RANDOM
  174. #endif
  175. // C++0x features in GCC 4.6.0 and later
  176. //
  177. #if (BOOST_LIBSTDCXX_VERSION < 40600) || !defined(BOOST_LIBSTDCXX11)
  178. # define BOOST_NO_CXX11_HDR_TYPEINDEX
  179. # define BOOST_NO_CXX11_ADDRESSOF
  180. #endif
  181. // C++0x features in GCC 4.7.0 and later
  182. //
  183. #if (BOOST_LIBSTDCXX_VERSION < 40700) || !defined(BOOST_LIBSTDCXX11)
  184. // Note that although <chrono> existed prior to 4.7, "steady_clock" is spelled "monotonic_clock"
  185. // so 4.7.0 is the first truely conforming one.
  186. # define BOOST_NO_CXX11_HDR_CHRONO
  187. # define BOOST_NO_CXX11_ALLOCATOR
  188. #endif
  189. // C++0x features in GCC 4.8.0 and later
  190. //
  191. #if (BOOST_LIBSTDCXX_VERSION < 40800) || !defined(BOOST_LIBSTDCXX11)
  192. // Note that although <atomic> existed prior to gcc 4.8 it was largely unimplemented for many types:
  193. # define BOOST_NO_CXX11_HDR_ATOMIC
  194. # define BOOST_NO_CXX11_HDR_THREAD
  195. #endif
  196. // C++0x features in GCC 4.9.0 and later
  197. //
  198. #if (BOOST_LIBSTDCXX_VERSION < 40900) || !defined(BOOST_LIBSTDCXX11)
  199. // Although <regex> is present and compilable against, the actual implementation is not functional
  200. // even for the simplest patterns such as "\d" or "[0-9]". This is the case at least in gcc up to 4.8, inclusively.
  201. # define BOOST_NO_CXX11_HDR_REGEX
  202. #endif
  203. #if defined(__clang_major__) && ((__clang_major__ < 3) || ((__clang_major__ == 3) && (__clang_minor__ < 7)))
  204. // As of clang-3.6, libstdc++ header <atomic> throws up errors with clang:
  205. # define BOOST_NO_CXX11_HDR_ATOMIC
  206. #endif
  207. //
  208. // C++0x features in GCC 5.1 and later
  209. //
  210. #if (BOOST_LIBSTDCXX_VERSION < 50100) || !defined(BOOST_LIBSTDCXX11)
  211. # define BOOST_NO_CXX11_HDR_TYPE_TRAITS
  212. # define BOOST_NO_CXX11_HDR_CODECVT
  213. # define BOOST_NO_CXX11_ATOMIC_SMART_PTR
  214. # define BOOST_NO_CXX11_STD_ALIGN
  215. #endif
  216. #if defined(__has_include)
  217. #if !__has_include(<shared_mutex>)
  218. # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
  219. #elif __cplusplus <= 201103
  220. # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
  221. #endif
  222. #elif __cplusplus < 201402 || (BOOST_LIBSTDCXX_VERSION < 40900) || !defined(BOOST_LIBSTDCXX11)
  223. # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
  224. #endif
  225. //
  226. // Headers not present on Solaris with the Oracle compiler:
  227. #if defined(__SUNPRO_CC)
  228. #define BOOST_NO_CXX11_HDR_FUTURE
  229. #define BOOST_NO_CXX11_HDR_FORWARD_LIST
  230. #define BOOST_NO_CXX11_HDR_ATOMIC
  231. // shared_ptr is present, but is not convertible to bool
  232. // which causes all kinds of problems especially in Boost.Thread
  233. // but probably elsewhere as well.
  234. #define BOOST_NO_CXX11_SMART_PTR
  235. #endif
  236. #if (!defined(_GLIBCXX_HAS_GTHREADS) || !defined(_GLIBCXX_USE_C99_STDINT_TR1))
  237. // Headers not always available:
  238. # ifndef BOOST_NO_CXX11_HDR_CONDITION_VARIABLE
  239. # define BOOST_NO_CXX11_HDR_CONDITION_VARIABLE
  240. # endif
  241. # ifndef BOOST_NO_CXX11_HDR_MUTEX
  242. # define BOOST_NO_CXX11_HDR_MUTEX
  243. # endif
  244. # ifndef BOOST_NO_CXX11_HDR_THREAD
  245. # define BOOST_NO_CXX11_HDR_THREAD
  246. # endif
  247. # ifndef BOOST_NO_CXX14_HDR_SHARED_MUTEX
  248. # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
  249. # endif
  250. #endif
  251. #if (!defined(_GTHREAD_USE_MUTEX_TIMEDLOCK) || (_GTHREAD_USE_MUTEX_TIMEDLOCK == 0)) && !defined(BOOST_NO_CXX11_HDR_MUTEX)
  252. // Timed mutexes are not always available:
  253. # define BOOST_NO_CXX11_HDR_MUTEX
  254. #endif
  255. // --- end ---