We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fe0146 commit 022a439Copy full SHA for 022a439
build.rs
@@ -7,7 +7,7 @@ use std::str;
7
// make sure to add it to this list as well.
8
const ALLOWED_CFGS: &'static [&'static str] = &[
9
"emscripten_new_stat_abi",
10
- "espidf_time64",
+ "espidf_time32",
11
"freebsd10",
12
"freebsd11",
13
"freebsd12",
src/unix/newlib/mod.rs
@@ -52,7 +52,7 @@ cfg_if! {
52
pub type useconds_t = u32;
53
54
cfg_if! {
55
- if #[cfg(any(target_os = "horizon", all(target_os = "espidf", espidf_time64)))] {
+ if #[cfg(any(target_os = "horizon", all(target_os = "espidf", not(espidf_time32))))] {
56
pub type time_t = ::c_longlong;
57
} else {
58
pub type time_t = i32;
0 commit comments