1
0
Fork 0

fix typoed AArch64 as ARM64

This commit is contained in:
Autumn Meadow 2022-06-04 23:56:33 -07:00
parent f7bfbb8d95
commit 7e711742d8
No known key found for this signature in database
GPG key ID: 9E9BB6D25186E719

View file

@ -420,7 +420,7 @@ fn compilation_target(cross_compile_target: Option<&str>) -> Result<CompilationT
#[cfg(target_arch = "x86_64")]
let architecture = Architecture::X86_64;
#[cfg(target_arch = "aarch64")]
let architecture = Architecture::ARM64;
let architecture = Architecture::AArch64;
#[cfg(target_os = "linux")]
return Ok(CompilationTarget::Linux(architecture));