Skip to content

Commit

Permalink
Use in-tree libbacktrace on Fuchsia
Browse files Browse the repository at this point in the history
  • Loading branch information
cramertj committed Jun 30, 2018
1 parent 5fdcd3a commit 3265189
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/libstd/build.rs
Expand Up @@ -22,7 +22,6 @@ fn main() {
if cfg!(feature = "backtrace") &&
!target.contains("cloudabi") &&
!target.contains("emscripten") &&
!target.contains("fuchsia") &&
!target.contains("msvc") &&
!target.contains("wasm32")
{
Expand Down Expand Up @@ -68,10 +67,6 @@ fn main() {
println!("cargo:rustc-link-lib=userenv");
println!("cargo:rustc-link-lib=shell32");
} else if target.contains("fuchsia") {
// use system-provided libbacktrace
if cfg!(feature = "backtrace") {
println!("cargo:rustc-link-lib=backtrace");
}
println!("cargo:rustc-link-lib=zircon");
println!("cargo:rustc-link-lib=fdio");
} else if target.contains("cloudabi") {
Expand Down

0 comments on commit 3265189

Please sign in to comment.