1diff --git a/src/sys/memfd.rs b/src/sys/memfd.rs 2index ad9345e..e43e1e5 100644 3--- a/src/sys/memfd.rs 4+++ b/src/sys/memfd.rs 5@@ -49,7 +49,9 @@ pub fn memfd_create(name: &CStr, flags: MemFdCreateFlag) -> Result<RawFd> { 6 any( 7 target_os = "freebsd", 8 // If the OS is Linux, gnu and musl expose a memfd_create symbol but not uclibc 9- target_env = "gnu", 10+ // 11+ // ANDROID: Our glibc is too old to have memfd_create. 12+ // target_env = "gnu", 13 target_env = "musl", 14 )))] 15 { 16