We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 145befe commit f04c929Copy full SHA for f04c929
src/bootstrap/src/core/sanity.rs
@@ -391,6 +391,7 @@ $ pacman -R cmake && pacman -S mingw-w64-x86_64-cmake
391
/// checks if the compiler at `path` is clang by looking at defined macros
392
fn is_clang_compiler(path: PathBuf, build: &Build) -> bool {
393
let cc_output = command(&path)
394
+ .allow_failure()
395
.arg("-E") // preprocess only
396
.arg("-dM") // dump defines
397
.arg("-x")
0 commit comments