コード例 #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')
コード例 #2
0
ファイル: clang_mkspecs.py プロジェクト: steinwurf/waf-tools
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)
コード例 #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')
コード例 #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")
コード例 #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")
コード例 #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")
コード例 #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)
コード例 #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')
コード例 #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')
コード例 #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)