diff --git a/src/libunwind/lib.rs b/src/libunwind/lib.rs index 1ff0a1e19d7b3..2f425d8e9860e 100644 --- a/src/libunwind/lib.rs +++ b/src/libunwind/lib.rs @@ -30,7 +30,7 @@ mod libunwind; #[cfg(not(target_env = "msvc"))] pub use libunwind::*; -#[cfg(target_env = "musl")] -#[link(name = "unwind", kind = "static-nobundle", cfg(target_feature = "crt-static"))] +#[cfg(all(target_env = "musl", not(target_arch = "mips")))] +#[link(name = "unwind", kind = "static", cfg(target_feature = "crt-static"))] #[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))] extern {}