We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4593564 + 3265189 commit a53bd20Copy full SHA for a53bd20
src/libstd/build.rs
@@ -22,7 +22,6 @@ fn main() {
22
if cfg!(feature = "backtrace") &&
23
!target.contains("cloudabi") &&
24
!target.contains("emscripten") &&
25
- !target.contains("fuchsia") &&
26
!target.contains("msvc") &&
27
!target.contains("wasm32")
28
{
@@ -68,10 +67,6 @@ fn main() {
68
67
println!("cargo:rustc-link-lib=userenv");
69
println!("cargo:rustc-link-lib=shell32");
70
} else if target.contains("fuchsia") {
71
- // use system-provided libbacktrace
72
- if cfg!(feature = "backtrace") {
73
- println!("cargo:rustc-link-lib=backtrace");
74
- }
75
println!("cargo:rustc-link-lib=zircon");
76
println!("cargo:rustc-link-lib=fdio");
77
} else if target.contains("cloudabi") {
0 commit comments