1# Disable with sanitizers for now, this require some more setup apparently. 2for san in ["asan", "msan", "ubsan"]: 3 if san in config.available_features: 4 config.unsupported = True 5 6config.substitutions.append(("%cmake_exe", config.host_cmake)) 7config.substitutions.append(("%cmake_generator", config.host_cmake_generator)) 8config.substitutions.append(("%host_cxx", config.host_cxx)) 9config.substitutions.append(("%host_cc", config.host_cc)) 10config.substitutions.append(("%enable_libcxx", config.enable_libcxx)) 11config.substitutions.append(("%mlir_cmake_dir", config.mlir_cmake_dir)) 12config.substitutions.append(("%llvm_use_linker", config.llvm_use_linker)) 13