Skip to content

Commit

Permalink
Support for RISC-V 64-bit GNU/Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
msizanoen1 committed Nov 27, 2019
1 parent 48e4bb9 commit 887d66b
Show file tree
Hide file tree
Showing 3 changed files with 866 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/unix/linux_like/linux/gnu/b64/mod.rs
Expand Up @@ -78,6 +78,9 @@ cfg_if! {
} else if #[cfg(any(target_arch = "x86_64"))] {
mod x86_64;
pub use self::x86_64::*;
} else if #[cfg(any(target_arch = "riscv64"))] {
mod riscv64;
pub use self::riscv64::*;
} else {
// Unknown target_arch
}
Expand Down

0 comments on commit 887d66b

Please sign in to comment.