From ccb0e403ead913a32e73485fef8fcca560409012 Mon Sep 17 00:00:00 2001 From: Thomas Lively <tlively@google.com> Date: Wed, 28 Aug 2019 20:46:24 -0700 Subject: [PATCH] Update ino_t --- libc-test/Cargo.toml | 3 +++ src/unix/linux_like/emscripten/mod.rs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml index 8d2d9033..87dd7af7 100644 --- a/libc-test/Cargo.toml +++ b/libc-test/Cargo.toml @@ -1,3 +1,6 @@ +[build] +rustc = "~/code/rust/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" + [package] name = "libc-test" version = "0.1.0" diff --git a/src/unix/linux_like/emscripten/mod.rs b/src/unix/linux_like/emscripten/mod.rs index e415f589..acce2c1d 100644 --- a/src/unix/linux_like/emscripten/mod.rs +++ b/src/unix/linux_like/emscripten/mod.rs @@ -22,7 +22,7 @@ pub type pthread_key_t = ::c_uint; pub type clock_t = c_long; pub type time_t = c_long; pub type suseconds_t = c_long; -pub type ino_t = u32; +pub type ino_t = u64; pub type off_t = i64; pub type blkcnt_t = i32; -- GitLab