diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-05-30 12:31:23 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-06-11 15:53:34 -0400 |
commit | 43673654197e8d691e0bb5f105d25cbaa39010f5 (patch) | |
tree | 4fb2f45c3922d6d33af3d88d80738760f4279c09 /components/constellation | |
parent | b8aac8b1529b7a4d1505f51f60a80b1076cdf1d3 (diff) | |
download | servo-43673654197e8d691e0bb5f105d25cbaa39010f5.tar.gz servo-43673654197e8d691e0bb5f105d25cbaa39010f5.zip |
No multiprocess on win arm64.
Diffstat (limited to 'components/constellation')
-rw-r--r-- | components/constellation/pipeline.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/components/constellation/pipeline.rs b/components/constellation/pipeline.rs index 8c770a1c274..b89ce8a259c 100644 --- a/components/constellation/pipeline.rs +++ b/components/constellation/pipeline.rs @@ -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, |