diff options
| author | Sébastien Marie <semarie@users.noreply.github.com> | 2017-11-26 10:08:25 +0100 |
|---|---|---|
| committer | Sébastien Marie <semarie@users.noreply.github.com> | 2017-11-26 10:08:25 +0100 |
| commit | 3ef39d3cb6e480aafefef083fa656cb592d56e55 (patch) | |
| tree | 30dff541d6f7dbf89bea836d0cc5a894b97db182 /src/libunwind | |
| parent | 2f84fb5cc1ac5f04bdf5a281997e02bcf4fc18d9 (diff) | |
| download | rust-3ef39d3cb6e480aafefef083fa656cb592d56e55.tar.gz rust-3ef39d3cb6e480aafefef083fa656cb592d56e55.zip | |
make OpenBSD to use libc++ instead of (e)stdc++
Diffstat (limited to 'src/libunwind')
| -rw-r--r-- | src/libunwind/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libunwind/build.rs b/src/libunwind/build.rs index dc1464b905b..d8457dab51b 100644 --- a/src/libunwind/build.rs +++ b/src/libunwind/build.rs @@ -27,7 +27,7 @@ fn main() { } else if target.contains("netbsd") { println!("cargo:rustc-link-lib=gcc_s"); } else if target.contains("openbsd") { - println!("cargo:rustc-link-lib=gcc"); + println!("cargo:rustc-link-lib=c++abi"); } else if target.contains("solaris") { println!("cargo:rustc-link-lib=gcc_s"); } else if target.contains("bitrig") { |
