We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26438b4 commit 5de0680Copy full SHA for 5de0680
library/unwind/build.rs
@@ -4,6 +4,10 @@ fn main() {
4
println!("cargo:rerun-if-changed=build.rs");
5
let target = env::var("TARGET").expect("TARGET was not set");
6
7
+ if cfg!(feature = "system-llvm-libunwind") {
8
+ return;
9
+ }
10
+
11
if cfg!(feature = "llvm-libunwind")
12
&& ((target.contains("linux") && !target.contains("musl")) || target.contains("fuchsia"))
13
{
0 commit comments