Skip to content

Commit c97a771

Browse files
committed
Add missing condition for musl mips64
unix::uclibc::mips has both support for mips and mips64, but it's currently only imported for mips.
1 parent 4d9a03e commit c97a771

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)