1
0
Fork 0

Merge pull request #9 from autumnblazey/fixtypo

fix typoed AArch64 as ARM64
This commit is contained in:
Robbert van der Helm 2022-06-05 12:55:59 +02:00 committed by GitHub
commit bc2b341089
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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));