We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a125ec9 commit dbcaf6cCopy full SHA for dbcaf6c
src/libunwind/lib.rs
@@ -30,7 +30,7 @@ mod libunwind;
30
#[cfg(not(target_env = "msvc"))]
31
pub use libunwind::*;
32
33
-#[cfg(target_env = "musl")]
34
-#[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"))]
35
#[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))]
36
extern {}
0 commit comments