Skip to content

Commit 53e6d2d

Browse files
ddevaultkanavin
authored andcommitted
Add base definitions for riscv64 + musl
1 parent 4f74e6e commit 53e6d2d

File tree

2 files changed

+870
-0
lines changed

2 files changed

+870
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,9 @@ cfg_if! {
163163
} else if #[cfg(any(target_arch = "x86_64"))] {
164164
mod x86_64;
165165
pub use self::x86_64::*;
166+
} else if #[cfg(any(target_arch = "riscv64"))] {
167+
mod riscv64;
168+
pub use self::riscv64::*;
166169
} else {
167170
// Unknown target_arch
168171
}

0 commit comments

Comments
 (0)