Example #1
0
def cxx_clang38_memory_sanitizer_x86(conf):
    """
    Configure clang 3.8 (32-bit) using the memory sanitizer
    """
    conf.mkspec_setup_clang_memory_sanitizer(3, 8, '-m32')
Example #2
0
def cxx_clang_memory_sanitizer_x86(conf):
    """
    Configure clang (32-bit) using the memory sanitizer
    """
    conf.mkspec_setup_clang_memory_sanitizer(3, 6, '-m32', minimum=True)
Example #3
0
def cxx_clang36_memory_sanitizer_x64(conf):
    """
    Configure clang 3.6 (64-bit) using the memory sanitizer
    """
    conf.mkspec_setup_clang_memory_sanitizer(3, 6, '-m64')
Example #4
0
def cxx_clang39_memory_sanitizer_x86(conf):
    """
    Configure clang 3.9 (32-bit) using the memory sanitizer
    """
    conf.mkspec_setup_clang_memory_sanitizer(3, 9, "-m32")
Example #5
0
def cxx_clang14_memory_sanitizer_x64(conf):
    """
    Configure clang 14.0 (64-bit) using the memory sanitizer
    """
    conf.mkspec_setup_clang_memory_sanitizer(14, 0, "-m64")
Example #6
0
def cxx_clang38_memory_sanitizer_x64(conf):
    """
    Configure clang 3.8 (64-bit) using the memory sanitizer
    """
    conf.mkspec_setup_clang_memory_sanitizer(3, 8, "-m64")
Example #7
0
def cxx_clang_memory_sanitizer_x86(conf):
    """
    Configure clang (32-bit) using the memory sanitizer
    """
    conf.mkspec_setup_clang_memory_sanitizer(3, 6, "-m32", minimum=True)
Example #8
0
def cxx_clang39_memory_sanitizer_x64(conf):
    """
    Configure clang 3.9 (64-bit) using the memory sanitizer
    """
    conf.mkspec_setup_clang_memory_sanitizer(3, 9, '-m64')
Example #9
0
def cxx_clang38_memory_sanitizer_x86(conf):
    """
    Configure clang 3.8 (32-bit) using the memory sanitizer
    """
    conf.mkspec_setup_clang_memory_sanitizer(3, 8, '-m32')
Example #10
0
def cxx_clang_memory_sanitizer_x64(conf):
    """
    Configure clang (64-bit) using the memory sanitizer
    """
    conf.mkspec_setup_clang_memory_sanitizer(3, 6, '-m64', minimum=True)