We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3541155 commit c894c05Copy full SHA for c894c05
.github/workflows/ci.yml
@@ -47,6 +47,7 @@ jobs:
47
- x86_64-unknown-linux-gnu
48
- x86_64-unknown-linux-musl
49
- aarch64-unknown-linux-gnu
50
+ - riscv64gc-unknown-linux-gnu
51
52
steps:
53
- uses: actions/checkout@v4
src/sys/mod.rs
@@ -17,7 +17,11 @@ use libc::*;
17
18
#[cfg(all(
19
not(feature = "bindgen"),
20
- not(any(target_arch = "x86_64", target_arch = "aarch64")),
+ not(any(
21
+ target_arch = "x86_64",
22
+ target_arch = "aarch64",
23
+ target_arch = "riscv64"
24
+ )),
25
not(io_uring_skip_arch_check)
26
))]
27
compile_error!(
0 commit comments