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 49e6255 commit d9a8675Copy full SHA for d9a8675
src/unix/linux_like/linux/musl/b64/mod.rs
@@ -163,6 +163,9 @@ cfg_if! {
163
} else if #[cfg(any(target_arch = "x86_64"))] {
164
mod x86_64;
165
pub use self::x86_64::*;
166
+ } else if #[cfg(any(target_arch = "riscv64"))] {
167
+ mod riscv64;
168
+ pub use self::riscv64::*;
169
} else {
170
// Unknown target_arch
171
}
0 commit comments