diff --git a/src/sys/mman.rs b/src/sys/mman.rs index f2cc699b04..48b5767e95 100644 --- a/src/sys/mman.rs +++ b/src/sys/mman.rs @@ -48,7 +48,7 @@ libc_bitflags!{ /// Put the mapping into the first 2GB of the process address space. #[cfg(any(all(any(target_os = "android", target_os = "linux"), any(target_arch = "x86", target_arch = "x86_64")), - all(target_os = "linux", target_env = "musl", any(target_arch = "x86", target_pointer_width = "64")), + all(target_os = "linux", target_env = "musl", any(target_arch = "x86", target_arch = "x86_64")), all(target_os = "freebsd", target_pointer_width = "64")))] MAP_32BIT; /// Used for stacks; indicates to the kernel that the mapping should extend downward in memory.