Add mips architectures to conditional-compile test

This commit is contained in:
Ximin Luo 2016-12-29 14:26:53 +01:00
parent 5740f94fed
commit 246e7492af

View File

@ -22,6 +22,12 @@ pub fn main() { }
#[cfg(target_arch = "aarch64")]
pub fn main() { }
#[cfg(target_arch = "mips")]
pub fn main() { }
#[cfg(target_arch = "mips64")]
pub fn main() { }
#[cfg(target_arch = "powerpc64")]
pub fn main() { }