Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/backend/libc/c.rs
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,11 @@ pub(super) use readwrite_pv64v2::{preadv64v2 as preadv2, pwritev64v2 as pwritev2
#[cfg(all(
linux_like,
linux_raw_dep,
not(any(target_os = "emscripten", target_env = "gnu"))
not(any(
target_os = "emscripten",
target_env = "gnu",
all(target_arch = "loongarch64", target_env = "musl")
))
))]
mod statx_flags {
pub(crate) use linux_raw_sys::general::{
Expand All @@ -509,7 +513,11 @@ mod statx_flags {
#[cfg(all(
linux_like,
linux_raw_dep,
not(any(target_os = "emscripten", target_env = "gnu"))
not(any(
target_os = "emscripten",
target_env = "gnu",
all(target_arch = "loongarch64", target_env = "musl")
))
))]
pub(crate) use statx_flags::*;

Expand Down
Loading