We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f315d16 commit 22aeb26Copy full SHA for 22aeb26
1 file changed
src/arch/mod.rs
@@ -5,12 +5,12 @@ cfg_select! {
5
mod aarch64;
6
pub(crate) use self::aarch64::*;
7
}
8
- target_arch = "x86_64" => {
9
- mod x86_64;
10
- pub(crate) use self::x86_64::*;
11
- }
12
target_arch = "riscv64" => {
13
mod riscv64;
14
pub(crate) use self::riscv64::*;
15
+ target_arch = "x86_64" => {
+ mod x86_64;
+ pub(crate) use self::x86_64::*;
+ }
16
0 commit comments