Browse Source

openbsd uses libc++ now

cl-test
Sébastien Marie 7 years ago
parent
commit
944740dab9
  1. 2
      src/lib.rs

2
src/lib.rs

@ -1525,6 +1525,8 @@ impl Build {
Ok(Some("c++".to_string()))
} else if target.contains("freebsd") {
Ok(Some("c++".to_string()))
} else if target.contains("openbsd") {
Ok(Some("c++".to_string()))
} else {
Ok(Some("stdc++".to_string()))
}

Loading…
Cancel
Save