Skip to content

Commit

Permalink
Auto merge of #1133 - glandium:musl-mips, r=gnzlbg
Browse files Browse the repository at this point in the history
Add missing condition for musl mips64

unix::uclibc::mips has both support for mips and mips64, but it's
currently only imported for mips.
  • Loading branch information
bors committed Nov 21, 2018
2 parents 4d9a03e + c97a771 commit 438034c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/uclibc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")] {
Expand Down

0 comments on commit 438034c

Please sign in to comment.