summaryrefslogtreecommitdiff
path: root/src/sys/personality.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/personality.rs')
-rw-r--r--src/sys/personality.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/personality.rs b/src/sys/personality.rs
index b15956c4..e64c906d 100644
--- a/src/sys/personality.rs
+++ b/src/sys/personality.rs
@@ -11,13 +11,13 @@ libc_bitflags! {
ADDR_NO_RANDOMIZE;
ADDR_LIMIT_32BIT;
ADDR_LIMIT_3GB;
- #[cfg(not(target_env = "musl"))]
+ #[cfg(not(any(target_env = "musl", target_env = "uclibc")))]
FDPIC_FUNCPTRS;
MMAP_PAGE_ZERO;
READ_IMPLIES_EXEC;
SHORT_INODE;
STICKY_TIMEOUTS;
- #[cfg(not(target_env = "musl"))]
+ #[cfg(not(any(target_env = "musl", target_env = "uclibc")))]
UNAME26;
WHOLE_SECONDS;
}