We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42f74a3 commit 58acf87Copy full SHA for 58acf87
1 file changed
crates/fspy_preload_unix/src/lib.rs
@@ -2,7 +2,7 @@
2
// Compile as an empty crate to avoid build failures from missing libc symbols.
3
#![cfg_attr(all(not(target_os = "android"), not(target_env = "musl")), feature(c_variadic))]
4
5
-#[cfg(all(target_os = "linux", not(target_env = "musl")))]
+#[cfg(all(unix, not(target_os = "android"), not(target_env = "musl")))]
6
mod client;
7
8
#[cfg(all(target_os = "linux", not(target_env = "musl")))]
0 commit comments