We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a30f35 commit 19f57d4Copy full SHA for 19f57d4
src/time.rs
@@ -6,7 +6,6 @@ use libc;
6
libc_enum! {
7
#[cfg_attr(any(
8
target_env = "uclibc",
9
- all(target_env = "newlib", target_arch = "arm"),
10
target_os = "fuchsia",
11
target_os = "redox",
12
target_os = "freebsd",
@@ -20,7 +19,11 @@ libc_enum! {
20
19
target_os = "solaris",
21
target_os = "illumos")),
22
), repr(i32))]
23
- #[cfg_attr(any(target_os = "macos", target_os = "ios"), repr(u32))]
+ #[cfg_attr(any(
+ all(target_env = "newlib", target_arch = "arm"),
24
+ target_os = "macos",
25
+ target_os = "ios",
26
+ ), repr(u32))]
27
28
all(target_env = "newlib", target_arch = "aarch64"),
29
all(not(any(target_env = "newlib", target_env = "uclibc")), target_os = "hermit"),
0 commit comments