aboutsummaryrefslogtreecommitdiffstats
path: root/components/constellation
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2019-05-30 12:31:23 -0400
committerJosh Matthews <josh@joshmatthews.net>2019-06-11 15:53:34 -0400
commit43673654197e8d691e0bb5f105d25cbaa39010f5 (patch)
tree4fb2f45c3922d6d33af3d88d80738760f4279c09 /components/constellation
parentb8aac8b1529b7a4d1505f51f60a80b1076cdf1d3 (diff)
downloadservo-43673654197e8d691e0bb5f105d25cbaa39010f5.tar.gz
servo-43673654197e8d691e0bb5f105d25cbaa39010f5.zip
No multiprocess on win arm64.
Diffstat (limited to 'components/constellation')
-rw-r--r--components/constellation/pipeline.rs6
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,