Exemplo n.º 1
0
def cxx_clang38_address_sanitizer_x86(conf):
    """
    Configure clang 3.8 (32-bit) using the address sanitizer
    """
    conf.mkspec_setup_clang_address_sanitizer(3, 8, '-m32')
Exemplo n.º 2
0
def cxx_clang_address_sanitizer_x86(conf):
    """
    Configure clang (32-bit) using the address sanitizer
    """
    conf.mkspec_setup_clang_address_sanitizer(3, 6, '-m32', minimum=True)
Exemplo n.º 3
0
def cxx_clang36_address_sanitizer_x64(conf):
    """
    Configure clang 3.6 (64-bit) using the address sanitizer
    """
    conf.mkspec_setup_clang_address_sanitizer(3, 6, '-m64')
Exemplo n.º 4
0
def cxx_clang39_address_sanitizer_x86(conf):
    """
    Configure clang 3.9 (32-bit) using the address sanitizer
    """
    conf.mkspec_setup_clang_address_sanitizer(3, 9, "-m32")
Exemplo n.º 5
0
def cxx_clang14_address_sanitizer_x64(conf):
    """
    Configure clang 14.0 (64-bit) using the address sanitizer
    """
    conf.mkspec_setup_clang_address_sanitizer(14, 0, "-m64")
Exemplo n.º 6
0
def cxx_clang38_address_sanitizer_x64(conf):
    """
    Configure clang 3.8 (64-bit) using the address sanitizer
    """
    conf.mkspec_setup_clang_address_sanitizer(3, 8, "-m64")
Exemplo n.º 7
0
def cxx_clang_address_sanitizer_x86(conf):
    """
    Configure clang (32-bit) using the address sanitizer
    """
    conf.mkspec_setup_clang_address_sanitizer(3, 6, "-m32", minimum=True)
Exemplo n.º 8
0
def cxx_clang39_address_sanitizer_x64(conf):
    """
    Configure clang 3.9 (64-bit) using the address sanitizer
    """
    conf.mkspec_setup_clang_address_sanitizer(3, 9, '-m64')
Exemplo n.º 9
0
def cxx_clang38_address_sanitizer_x86(conf):
    """
    Configure clang 3.8 (32-bit) using the address sanitizer
    """
    conf.mkspec_setup_clang_address_sanitizer(3, 8, '-m32')
Exemplo n.º 10
0
def cxx_clang_address_sanitizer_x64(conf):
    """
    Configure clang (64-bit) using the address sanitizer
    """
    conf.mkspec_setup_clang_address_sanitizer(3, 6, '-m64', minimum=True)