We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0159b51 commit b168a4cCopy full SHA for b168a4c
crates/std_detect/src/detect/mod.rs
@@ -47,7 +47,7 @@ cfg_if! {
47
// On x86/x86_64 no OS specific functionality is required.
48
#[path = "os/x86.rs"]
49
mod os;
50
- } else if #[cfg(all(target_os = "linux", feature = "libc"))] {
+ } else if #[cfg(all(any(target_os = "linux", target_os = "android"), feature = "libc"))] {
51
#[path = "os/linux/mod.rs"]
52
53
} else if #[cfg(all(target_os = "freebsd", feature = "libc"))] {
0 commit comments