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 6fa612f commit 042b707Copy full SHA for 042b707
src/unix/mod.rs
@@ -276,7 +276,7 @@ cfg_if! {
276
} else if #[cfg(feature = "use_std")] {
277
// cargo build, don't pull in anything extra as the libstd dep
278
// already pulls in all libs.
279
- } else if #[cfg(any(all(target_env = "musl", not(target_arch = "mips"))))] {
+ } else if #[cfg(target_env = "musl")] {
280
#[link(name = "c", kind = "static", cfg(target_feature = "crt-static"))]
281
#[link(name = "c", cfg(not(target_feature = "crt-static")))]
282
extern {}
0 commit comments