Fix clang 3.4-3.5 64bit build (boost.atomic problem, see https://svn.boost.org/trac...
[libcds.git] / cds / compiler / clang / defs.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_COMPILER_CLANG_DEFS_H
4 #define __CDS_COMPILER_CLANG_DEFS_H
5
6 // Compiler version
7 #define CDS_COMPILER_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__)
8
9 // Compiler name
10 #define  CDS_COMPILER__NAME    ("clang " __clang_version__)
11 #define  CDS_COMPILER__NICK    "clang"
12
13 #if CDS_COMPILER_VERSION < 30300
14 #   error "Compiler version error. Clang version 3.3.0 and above is supported"
15 #endif
16
17 #if defined(_LIBCPP_VERSION) && !defined(CDS_USE_BOOST_ATOMIC)
18     // Note: Clang libc++ atomic leads to program crash.
19     // So, we use libcds atomic implementation
20 #   define CDS_USE_LIBCDS_ATOMIC
21 #endif
22
23 #include <cds/compiler/gcc/compiler_macro.h>
24
25 #if CDS_COMPILER_VERSION >= 30400 && CDS_COMPILER_VERSION < 30500 && CDS_PROCESSOR_ARCH == CDS_PROCESSOR_AMD64
26     // Error compiling 64bit boost.atomic on clang 3.4 - 3.5
27     // see https://svn.boost.org/trac/boost/ticket/9610
28 #   define BOOST_HAS_INT128 1
29 #endif
30
31 #define alignof __alignof__
32
33 // C++11 inline namespace
34 #define CDS_CXX11_INLINE_NAMESPACE_SUPPORT
35
36 #define CDS_CONSTEXPR    constexpr
37 #define CDS_CONSTEXPR_CONST constexpr const
38
39 #define CDS_NOEXCEPT_SUPPORT        noexcept
40 #define CDS_NOEXCEPT_SUPPORT_(expr) noexcept(expr)
41
42 // C++11 thread_local keyword
43 #define CDS_CXX11_THREAD_LOCAL_SUPPORT
44
45 // Full SFINAE support
46 #define CDS_CXX11_SFINAE
47
48 // *************************************************
49 // Alignment macro
50
51 #define CDS_TYPE_ALIGNMENT(n)   __attribute__ ((aligned (n)))
52 #define CDS_CLASS_ALIGNMENT(n)  __attribute__ ((aligned (n)))
53 #define CDS_DATA_ALIGNMENT(n)   __attribute__ ((aligned (n)))
54
55
56 #include <cds/compiler/gcc/compiler_barriers.h>
57
58 #endif // #ifndef __CDS_COMPILER_GCC_DEFS_H