Skip to content

Commit 887d66b

Browse files
committed
Support for RISC-V 64-bit GNU/Linux
1 parent 48e4bb9 commit 887d66b

File tree

3 files changed

+866
-1
lines changed

3 files changed

+866
-1
lines changed

src/unix/linux_like/linux/gnu/b64/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ cfg_if! {
7878
} else if #[cfg(any(target_arch = "x86_64"))] {
7979
mod x86_64;
8080
pub use self::x86_64::*;
81+
} else if #[cfg(any(target_arch = "riscv64"))] {
82+
mod riscv64;
83+
pub use self::riscv64::*;
8184
} else {
8285
// Unknown target_arch
8386
}

0 commit comments

Comments
 (0)