Skip to content

Commit 438034c

Browse files
committed
Auto merge of #1133 - glandium:musl-mips, r=gnzlbg
Add missing condition for musl mips64 unix::uclibc::mips has both support for mips and mips64, but it's currently only imported for mips.
2 parents 4d9a03e + c97a771 commit 438034c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unix/uclibc/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1950,7 +1950,7 @@ extern {
19501950
}
19511951

19521952
cfg_if! {
1953-
if #[cfg(target_arch = "mips")] {
1953+
if #[cfg(any(target_arch = "mips", target_arch = "mips64"))] {
19541954
mod mips;
19551955
pub use self::mips::*;
19561956
} else if #[cfg(target_arch = "x86_64")] {

0 commit comments

Comments
 (0)