From c97a771f289c8ffd7f8a074225bcf36cc0e53ef9 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Wed, 21 Nov 2018 18:13:01 +0900 Subject: [PATCH] Add missing condition for musl mips64 unix::uclibc::mips has both support for mips and mips64, but it's currently only imported for mips. --- src/unix/uclibc/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/uclibc/mod.rs b/src/unix/uclibc/mod.rs index 03a8594f..acec6f30 100644 --- a/src/unix/uclibc/mod.rs +++ b/src/unix/uclibc/mod.rs @@ -1950,7 +1950,7 @@ extern { } cfg_if! { - if #[cfg(target_arch = "mips")] { + if #[cfg(any(target_arch = "mips", target_arch = "mips64"))] { mod mips; pub use self::mips::*; } else if #[cfg(target_arch = "x86_64")] {