diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-24 08:10:58 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-24 08:10:58 +0200 |
commit | 2fcb8f32f339f3a3cb550f10f565d6072f565012 (patch) | |
tree | 1124a256ba5fe1f66272b781a99374c4c688e3d7 /butl/ft/lang | |
parent | f29c9a5a0cdca0205f98d55ad20d1145295db126 (diff) |
Redo config as feature test macros
Diffstat (limited to 'butl/ft/lang')
-rw-r--r-- | butl/ft/lang | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/butl/ft/lang b/butl/ft/lang new file mode 100644 index 0000000..8cfc441 --- /dev/null +++ b/butl/ft/lang @@ -0,0 +1,29 @@ +// file : butl/ft/lang -*- C++ -*- +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef BUTL_FT_LANG +#define BUTL_FT_LANG + +// __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 // BUTL_FT_LANG |