Skip to content

Commit f04c929

Browse files
committed
fix(bootstrap): allow failure
1 parent 145befe commit f04c929

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/bootstrap/src/core/sanity.rs

+1
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,7 @@ $ pacman -R cmake && pacman -S mingw-w64-x86_64-cmake
391391
/// checks if the compiler at `path` is clang by looking at defined macros
392392
fn is_clang_compiler(path: PathBuf, build: &Build) -> bool {
393393
let cc_output = command(&path)
394+
.allow_failure()
394395
.arg("-E") // preprocess only
395396
.arg("-dM") // dump defines
396397
.arg("-x")

0 commit comments

Comments
 (0)