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.
2 parents 5a8eb47 + a986f81 commit 60b269fCopy full SHA for 60b269f
src/primitives.rs
@@ -20,7 +20,14 @@ pub type c_double = f64;
20
cfg_if! {
21
if #[cfg(all(
22
not(windows),
23
- not(target_vendor = "apple"),
+ // FIXME(ctest): just use `target_vendor` = "apple"` once `ctest` supports it
24
+ not(any(
25
+ target_os = "macos",
26
+ target_os = "ios",
27
+ target_os = "tvos",
28
+ target_os = "watchos",
29
+ target_os = "visionos",
30
+ )),
31
not(target_os = "vita"),
32
any(
33
target_arch = "aarch64",
0 commit comments