Skip to content

Commit 5e208ed

Browse files
committed
Auto merge of #607 - humenda:master, r=alexcrichton
Add x86_64 module to uclibc/mod.rs
2 parents f74d134 + 4d3ea34 commit 5e208ed

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/unix/uclibc/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1759,6 +1759,9 @@ cfg_if! {
17591759
if #[cfg(target_arch = "mips")] {
17601760
mod mips;
17611761
pub use self::mips::*;
1762+
} else if #[cfg(target_arch = "x86_64")] {
1763+
mod x86_64;
1764+
pub use self::x86_64::*;
17621765
} else {
17631766
pub use unsupported_target;
17641767
}

0 commit comments

Comments
 (0)