aboutsummaryrefslogtreecommitdiff
path: root/libbutl/ft
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-01 16:08:43 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-01 16:59:24 +0300
commit61377c582e0f2675baa5f5e6e30a35d1a4164b33 (patch)
tree11cdca992834d7f7f197f72856712fbcb3020e3d /libbutl/ft
parent442c1a6790e52baa0c081f310d4d9e9b6f1ff638 (diff)
Add hxx extension for headers and lib prefix for library dir
Diffstat (limited to 'libbutl/ft')
-rw-r--r--libbutl/ft/exception.hxx39
-rw-r--r--libbutl/ft/lang.hxx29
-rw-r--r--libbutl/ft/shared_mutex.hxx58
3 files changed, 126 insertions, 0 deletions
diff --git a/libbutl/ft/exception.hxx b/libbutl/ft/exception.hxx
new file mode 100644
index 0000000..a5f6156
--- /dev/null
+++ b/libbutl/ft/exception.hxx
@@ -0,0 +1,39 @@
+// file : libbutl/ft/exception.hxx -*- C++ -*-
+// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef LIBBUTL_FT_EXCEPTION_HXX
+#define LIBBUTL_FT_EXCEPTION_HXX
+
+#include <cstddef> // _LIBCPP_VERSION
+#include <exception>
+
+// __cpp_lib_uncaught_exceptions
+//
+#ifndef __cpp_lib_uncaught_exceptions
+ //
+ // VC has it since 1900.
+ //
+# if defined(_MSC_VER)
+# if _MSC_VER >= 1900
+# define __cpp_lib_uncaught_exceptions 201411
+# endif
+ //
+ // Clang's libc++ seems to have it for a while (but not before 1200) so we
+ // assume it's there from 1200. But not for MacOS, where it is explicitly
+ // marked as unavailable until MacOS 10.12.
+ //
+# elif defined(_LIBCPP_VERSION)
+# if _LIBCPP_VERSION >= 1200 && \
+ (!defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) || \
+ __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 101200)
+# define __cpp_lib_uncaught_exceptions 201411
+# endif
+ //
+ // GCC libstdc++ has it since GCC 6 and it defines the feature test macro.
+ // We will also use this for any other runtime.
+ //
+# endif
+#endif
+
+#endif // LIBBUTL_FT_EXCEPTION_HXX
diff --git a/libbutl/ft/lang.hxx b/libbutl/ft/lang.hxx
new file mode 100644
index 0000000..5daf9c9
--- /dev/null
+++ b/libbutl/ft/lang.hxx
@@ -0,0 +1,29 @@
+// file : libbutl/ft/lang.hxx -*- C++ -*-
+// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef LIBBUTL_FT_LANG_HXX
+#define LIBBUTL_FT_LANG_HXX
+
+// __cpp_thread_local (extension)
+//
+// If this macro is undefined then one may choose to fallback to __thread.
+// Note, however, that it only for values that do not require dynamic
+// (runtime) initialization.
+//
+#ifndef __cpp_thread_local
+ //
+ // Apparently Apple's Clang "temporarily disabled" C++11 thread_local until
+ // they can implement a "fast" version, which reportedly happened in XCode
+ // 8.
+ //
+# if defined(__apple_build_version__)
+# if __apple_build_version__ >= 8000000
+# define __cpp_thread_local 201103
+# endif
+# else
+# define __cpp_thread_local 201103
+# endif
+#endif
+
+#endif // LIBBUTL_FT_LANG_HXX
diff --git a/libbutl/ft/shared_mutex.hxx b/libbutl/ft/shared_mutex.hxx
new file mode 100644
index 0000000..6c6d415
--- /dev/null
+++ b/libbutl/ft/shared_mutex.hxx
@@ -0,0 +1,58 @@
+// file : libbutl/ft/shared_mutex.hxx -*- C++ -*-
+// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef LIBBUTL_FT_SHARED_MUTEX_HXX
+#define LIBBUTL_FT_SHARED_MUTEX_HXX
+
+#include <cstddef> // _LIBCPP_VERSION
+#include <shared_mutex>
+
+// __cpp_lib_shared_mutex
+//
+#ifndef __cpp_lib_shared_mutex
+ //
+ // VC has it since 1900.
+ //
+# if defined(_MSC_VER)
+# if _MSC_VER >= 1900
+# define __cpp_lib_shared_mutex 201505
+# endif
+ //
+ // Clang's libc++ seems to have it for a while (but not before 1200) so we
+ // assume it's there from 1200. It's also only enabled after C++14. But not
+ // for MacOS, where it is explicitly marked as unavailable until MacOS
+ // 10.12.
+ //
+# elif defined(_LIBCPP_VERSION) && defined(_LIBCPP_STD_VER)
+# if _LIBCPP_VERSION >= 1200 && \
+ _LIBCPP_STD_VER > 14 && \
+ (!defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) || \
+ __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 101200)
+# define __cpp_lib_shared_mutex 201505
+# endif
+ //
+ // GCC libstdc++ has it since GCC 6 and it defines the feature test macro.
+ // We will also use this for any other runtime.
+ //
+# endif
+#endif
+
+// __cpp_lib_shared_timed_mutex
+//
+#ifndef __cpp_lib_shared_timed_mutex
+ //
+ // On MacOS shared_timed_mutex is marked as unavailable until MacOS
+ // 10.12.
+ //
+# if defined(_LIBCPP_VERSION)
+# if !defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) || \
+ __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 101200
+# define __cpp_lib_shared_timed_mutex 201402
+# endif
+# else
+# define __cpp_lib_shared_timed_mutex 201402
+# endif
+#endif
+
+#endif // LIBBUTL_FT_SHARED_MUTEX_HXX