We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e9595e commit 0fe1359Copy full SHA for 0fe1359
src/build_helper/lib.rs
@@ -48,7 +48,7 @@ pub fn cc2ar(cc: &Path, target: &str) -> PathBuf {
48
for suffix in &["gcc", "cc", "clang"] {
49
if let Some(idx) = file.rfind(suffix) {
50
let mut file = file[..idx].to_owned();
51
- file.push_str(suffix);
+ file.push_str("ar");
52
return parent.join(&file);
53
}
54
0 commit comments