We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5d7043 commit 98f9bbaCopy full SHA for 98f9bba
src/libunwind/build.rs
@@ -28,9 +28,11 @@ fn main() {
28
println!("cargo:rustc-link-lib=gcc_s");
29
} else if target.contains("dragonfly") {
30
println!("cargo:rustc-link-lib=gcc_pic");
31
- } else if target.contains("windows-gnu") {
+ } else if target.contains("pc-windows-gnu") {
32
println!("cargo:rustc-link-lib=static-nobundle=gcc_eh");
33
println!("cargo:rustc-link-lib=static-nobundle=pthread");
34
+ } else if target.contains("uwp-windows-gnu") {
35
+ println!("cargo:rustc-link-lib=unwind");
36
} else if target.contains("fuchsia") {
37
println!("cargo:rustc-link-lib=unwind");
38
} else if target.contains("haiku") {
0 commit comments