Skip to content

Commit

Permalink
fix: cpu_family arm64 should be aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverMira committed Nov 26, 2024
1 parent b488b8f commit 62c1eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/connection/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ pub async fn authenticate(

let cpu_family = match std::env::consts::ARCH {
"blackfin" => CpuFamily::CPU_BLACKFIN,
"arm" | "arm64" => CpuFamily::CPU_ARM,
"arm" | "aarch64" => CpuFamily::CPU_ARM,
"ia64" => CpuFamily::CPU_IA64,
"mips" => CpuFamily::CPU_MIPS,
"ppc" => CpuFamily::CPU_PPC,
Expand Down

0 comments on commit 62c1eba

Please sign in to comment.