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 a9ea876 commit 2e2d926Copy full SHA for 2e2d926
src/libstd/sys/unix/process/process_unix.rs
@@ -235,14 +235,14 @@ impl Command {
235
io::Error::last_os_error()
236
}
237
238
- #[cfg(not(any(target_os = "freebsd")))]
+ #[cfg(not(any(target_os = "macos", target_os = "freebsd")))]
239
fn posix_spawn(&mut self, _stdio: &ChildPipes, _envp: Option<&CStringArray>)
240
-> io::Result<Option<Process>>
241
{
242
Ok(None)
243
244
245
- #[cfg(any(target_os = "freebsd"))]
+ #[cfg(any(target_os = "macos", target_os = "freebsd"))]
246
fn posix_spawn(&mut self, stdio: &ChildPipes, envp: Option<&CStringArray>)
247
248
0 commit comments