Skip to content

Commit 78320c7

Browse files
committed
retry
1 parent 2938d1c commit 78320c7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/unix/mod.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -286,12 +286,11 @@ cfg_if! {
286286
} else if #[cfg(target_os = "emscripten")] {
287287
#[link(name = "c")]
288288
extern {}
289-
} else if #[cfg(all(target_os = "netbsd",
290-
cfg_attr(feature = "stdbuild",
291-
target_vendor = "rumprun")))] {
289+
} else if #[cfg(all(target_os = "netbsd"))] {
292290
// Since we don't use -nodefaultlibs on Rumprun, libc is always pulled
293291
// in automatically by the linker. We avoid passing it explicitly, as it
294292
// causes some versions of binutils to crash with an assertion failure.
293+
#[cfg_attr(feature = "stdbuild", target_vendor = "rumprun")]
295294
#[link(name = "m")]
296295
extern {}
297296
} else if #[cfg(any(target_os = "macos",

0 commit comments

Comments
 (0)