We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d250169 commit dd0fc0aCopy full SHA for dd0fc0a
src/build_helper/lib.rs
@@ -47,6 +47,8 @@ pub fn cc2ar(cc: &Path, target: &str) -> Option<PathBuf> {
47
None
48
} else if target.contains("musl") {
49
Some(PathBuf::from("ar"))
50
+ } else if target.contains("openbsd") {
51
+ Some(PathBuf::from("ar"))
52
} else {
53
let parent = cc.parent().unwrap();
54
let file = cc.file_name().unwrap().to_str().unwrap();
0 commit comments