We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4807d50 commit c263664Copy full SHA for c263664
crates/rustc_codegen_nvvm/build.rs
@@ -75,6 +75,9 @@ fn find_llvm_config(target: &str) -> PathBuf {
75
if version.starts_with(&REQUIRED_MAJOR_LLVM_VERSION.to_string()) {
76
return PathBuf::from(path_to_try);
77
}
78
+ println!("cargo:warning=Prebuilt llvm-config version does not start with {}", REQUIRED_MAJOR_LLVM_VERSION);
79
+ } else {
80
+ println!("cargo:warning=Failed to run prebuilt llvm-config");
81
82
83
0 commit comments