Esempio n. 1
0
def cxx_clang38_thread_sanitizer_x86(conf):
    """
    Configure clang 3.8 (32-bit) using the thread sanitizer
    """
    conf.mkspec_setup_clang_thread_sanitizer(3, 8, '-m32')
Esempio n. 2
0
def cxx_clang_thread_sanitizer_x86(conf):
    """
    Configure clang (32-bit) using the thread sanitizer
    """
    conf.mkspec_setup_clang_thread_sanitizer(3, 6, '-m32', minimum=True)
Esempio n. 3
0
def cxx_clang36_thread_sanitizer_x64(conf):
    """
    Configure clang 3.6 (64-bit) using the thread sanitizer
    """
    conf.mkspec_setup_clang_thread_sanitizer(3, 6, '-m64')
Esempio n. 4
0
def cxx_clang39_thread_sanitizer_x86(conf):
    """
    Configure clang 3.9 (32-bit) using the thread sanitizer
    """
    conf.mkspec_setup_clang_thread_sanitizer(3, 9, "-m32")
Esempio n. 5
0
def cxx_clang14_thread_sanitizer_x64(conf):
    """
    Configure clang 14.0 (64-bit) using the thread sanitizer
    """
    conf.mkspec_setup_clang_thread_sanitizer(14, 0, "-m64")
Esempio n. 6
0
def cxx_clang38_thread_sanitizer_x64(conf):
    """
    Configure clang 3.8 (64-bit) using the thread sanitizer
    """
    conf.mkspec_setup_clang_thread_sanitizer(3, 8, "-m64")
Esempio n. 7
0
def cxx_clang_thread_sanitizer_x86(conf):
    """
    Configure clang (32-bit) using the thread sanitizer
    """
    conf.mkspec_setup_clang_thread_sanitizer(3, 6, "-m32", minimum=True)
Esempio n. 8
0
def cxx_clang39_thread_sanitizer_x64(conf):
    """
    Configure clang 3.9 (64-bit) using the thread sanitizer
    """
    conf.mkspec_setup_clang_thread_sanitizer(3, 9, '-m64')
Esempio n. 9
0
def cxx_clang38_thread_sanitizer_x86(conf):
    """
    Configure clang 3.8 (32-bit) using the thread sanitizer
    """
    conf.mkspec_setup_clang_thread_sanitizer(3, 8, '-m32')
Esempio n. 10
0
def cxx_clang_thread_sanitizer_x64(conf):
    """
    Configure clang (64-bit) using the thread sanitizer
    """
    conf.mkspec_setup_clang_thread_sanitizer(3, 6, '-m64', minimum=True)