Skip to content
Snippets Groups Projects
Commit c97a771f authored by Mike Hommey's avatar Mike Hommey
Browse files

Add missing condition for musl mips64

unix::uclibc::mips has both support for mips and mips64, but it's
currently only imported for mips.
parent 4d9a03e3
No related branches found
No related tags found
No related merge requests found
...@@ -1950,7 +1950,7 @@ extern { ...@@ -1950,7 +1950,7 @@ extern {
} }
cfg_if! { cfg_if! {
if #[cfg(target_arch = "mips")] { if #[cfg(any(target_arch = "mips", target_arch = "mips64"))] {
mod mips; mod mips;
pub use self::mips::*; pub use self::mips::*;
} else if #[cfg(target_arch = "x86_64")] { } else if #[cfg(target_arch = "x86_64")] {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment