No multiprocess on win arm64.

This commit is contained in:
Josh Matthews 2019-05-30 12:31:23 -04:00
parent b8aac8b152
commit 4367365419

View file

@ -599,7 +599,11 @@ impl UnprivilegedPipelineContent {
}
}
#[cfg(any(target_os = "android", target_arch = "arm", target_arch = "aarch64"))]
#[cfg(any(
target_os = "android",
target_arch = "arm",
all(target_arch = "aarch64", not(target_os = "windows"))
))]
pub fn spawn_multiprocess(self) -> Result<(), Error> {
use ipc_channel::ipc::IpcOneShotServer;
// Note that this function can panic, due to process creation,