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
10 changes: 9 additions & 1 deletion src/backends.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,15 @@ cfg_if! {
// Minimum supported Linux kernel version for MUSL targets
// is not specified explicitly (as of Rust 1.77) and they
// are used in practice to target pre-3.17 kernels.
target_env = "musl",
all(
target_env = "musl",
not(
any(
target_arch = "riscv64",
target_arch = "riscv32",
),
),
),
),
)
))] {
Expand Down
Loading