about summary refs log tree commit diff
path: root/src/liballoc_system
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2016-08-27 01:39:29 -0500
committerJorge Aparicio <japaricious@gmail.com>2016-08-27 01:40:29 -0500
commit43615a03f31d3c60c4af13a1fe17bd4cf3edad06 (patch)
tree2d8225825df1f12d2bd59bb87d4b5cbbcdd871fe /src/liballoc_system
parent1b9e9ab1dc523c4778a2510e4f9e2d470fe7a4a3 (diff)
downloadrust-43615a03f31d3c60c4af13a1fe17bd4cf3edad06.tar.gz
rust-43615a03f31d3c60c4af13a1fe17bd4cf3edad06.zip
fix cross compilation of std
Diffstat (limited to 'src/liballoc_system')
-rw-r--r--src/liballoc_system/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/liballoc_system/lib.rs b/src/liballoc_system/lib.rs
index 9eade937bfb..2c0c6d068ca 100644
--- a/src/liballoc_system/lib.rs
+++ b/src/liballoc_system/lib.rs
@@ -32,7 +32,8 @@
               target_arch = "asmjs")))]
 const MIN_ALIGN: usize = 8;
 #[cfg(all(any(target_arch = "x86_64",
-              target_arch = "aarch64")))]
+              target_arch = "aarch64",
+              target_arch = "mips64")))]
 const MIN_ALIGN: usize = 16;
 
 #[no_mangle]