summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-06-04 17:59:28 +0000
committerbors <bors@rust-lang.org>2017-06-04 17:59:28 +0000
commit5e208ed9b2576269da71b6ebbd0eab8e4085b20a (patch)
tree086fab59893c783a1215e86345bccedfafe8e0ae
parentf74d134a2fbacdf555ad09124c3d07f25e748100 (diff)
parent4d3ea348b023a1ff408340af0f0b25451adb7a52 (diff)
downloadrust-libc-5e208ed9b2576269da71b6ebbd0eab8e4085b20a.tar.gz
Auto merge of #607 - humenda:master, r=alexcrichton
Add x86_64 module to uclibc/mod.rs
-rw-r--r--src/unix/uclibc/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/unix/uclibc/mod.rs b/src/unix/uclibc/mod.rs
index 9345573ebe..09f7d055f3 100644
--- a/src/unix/uclibc/mod.rs
+++ b/src/unix/uclibc/mod.rs
@@ -1759,6 +1759,9 @@ cfg_if! {
if #[cfg(target_arch = "mips")] {
mod mips;
pub use self::mips::*;
+ } else if #[cfg(target_arch = "x86_64")] {
+ mod x86_64;
+ pub use self::x86_64::*;
} else {
pub use unsupported_target;
}