|
14 | 14 |
|
15 | 15 | use fmt; |
16 | 16 |
|
17 | | -#[cfg(any(target_os = "android", |
18 | | - target_os = "emscripten", |
| 17 | +#[cfg(any(target_os = "emscripten", |
19 | 18 | all(target_os = "linux", any(target_arch = "aarch64", |
20 | 19 | target_arch = "arm", |
21 | 20 | target_arch = "powerpc", |
22 | 21 | target_arch = "powerpc64", |
23 | 22 | target_arch = "s390x")), |
| 23 | + all(target_os = "android", any(target_arch = "aarch64", |
| 24 | + target_arch = "arm")), |
24 | 25 | all(target_os = "fuchsia", target_arch = "aarch64")))] |
25 | 26 | #[stable(feature = "raw_os", since = "1.1.0")] pub type c_char = u8; |
26 | | -#[cfg(not(any(target_os = "android", |
27 | | - target_os = "emscripten", |
| 27 | +#[cfg(not(any(target_os = "emscripten", |
28 | 28 | all(target_os = "linux", any(target_arch = "aarch64", |
29 | 29 | target_arch = "arm", |
30 | 30 | target_arch = "powerpc", |
31 | 31 | target_arch = "powerpc64", |
32 | 32 | target_arch = "s390x")), |
| 33 | + all(target_os = "android", any(target_arch = "aarch64", |
| 34 | + target_arch = "arm")), |
33 | 35 | all(target_os = "fuchsia", target_arch = "aarch64"))))] |
34 | 36 | #[stable(feature = "raw_os", since = "1.1.0")] pub type c_char = i8; |
35 | 37 | #[stable(feature = "raw_os", since = "1.1.0")] pub type c_schar = i8; |
|
0 commit comments