Add missing condition for musl mips64

unix::uclibc::mips has both support for mips and mips64, but it's
currently only imported for mips.
This commit is contained in:
Mike Hommey 2018-11-21 18:13:01 +09:00
parent 4d9a03e391
commit c97a771f28

View File

@ -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")] {