summaryrefslogtreecommitdiffstats
path: root/library/unwind/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/unwind/build.rs')
-rw-r--r--library/unwind/build.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/library/unwind/build.rs b/library/unwind/build.rs
index 31af39025..5c3c02fb6 100644
--- a/library/unwind/build.rs
+++ b/library/unwind/build.rs
@@ -21,29 +21,5 @@ fn main() {
if has_unwind {
println!("cargo:rustc-cfg=feature=\"system-llvm-libunwind\"");
}
- } else if target.contains("freebsd") {
- println!("cargo:rustc-link-lib=gcc_s");
- } else if target.contains("netbsd") {
- println!("cargo:rustc-link-lib=gcc_s");
- } else if target.contains("openbsd") {
- if target.contains("sparc64") {
- println!("cargo:rustc-link-lib=gcc");
- } else {
- println!("cargo:rustc-link-lib=c++abi");
- }
- } else if target.contains("solaris") {
- println!("cargo:rustc-link-lib=gcc_s");
- } else if target.contains("illumos") {
- println!("cargo:rustc-link-lib=gcc_s");
- } else if target.contains("dragonfly") {
- println!("cargo:rustc-link-lib=gcc_pic");
- } else if target.ends_with("pc-windows-gnu") {
- // This is handled in the target spec with late_link_args_[static|dynamic]
- } else if target.contains("uwp-windows-gnu") {
- println!("cargo:rustc-link-lib=unwind");
- } else if target.contains("haiku") {
- println!("cargo:rustc-link-lib=gcc_s");
- } else if target.contains("redox") {
- // redox is handled in lib.rs
}
}