brintos

brintos / llvm-project-archived public Read only

0
0
Text · 335 B · 96ccdeb Raw
13 lines · plain
1import os2 3if not "X86" in config.root.targets:4    config.unsupported = True5 6if config.llvm_use_sanitizer:7    suppr = os.path.join(8        os.path.dirname(os.path.realpath(__file__)), "suppressions.txt"9    )10    config.environment["LSAN_OPTIONS"] = "suppressions={}".format(suppr)11 12config.suffixes = [".test", ".cpp", ".m", ".s"]13