diff options
Diffstat (limited to 'src/libunwind/build.rs')
| -rw-r--r-- | src/libunwind/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libunwind/build.rs b/src/libunwind/build.rs index afd1e5e1c5e..11c4c2faf13 100644 --- a/src/libunwind/build.rs +++ b/src/libunwind/build.rs @@ -15,7 +15,7 @@ fn main() { let target = env::var("TARGET").expect("TARGET was not set"); if target.contains("linux") { - if target.contains("musl") && !target.contains("mips") { + if target.contains("musl") { // musl is handled in lib.rs } else if !target.contains("android") { println!("cargo:rustc-link-lib=gcc_s"); |
