feat: Support Linux ARM64 GNU

This commit is contained in:
2026-08-28 22:49:58 -06:00
parent 0946e3ec64
commit f0661b4ea4
4 changed files with 26 additions and 32 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ fn preferred_update_target() -> Option<&'static str> {
match (env::consts::OS, env::consts::ARCH) {
("linux", "x86_64") if cfg!(target_env = "gnu") => Some("x86_64-unknown-linux-gnu"),
("linux", "x86_64") => Some("x86_64-unknown-linux-musl"),
// No aarch64 gnu asset is published; musl is the only option.
("linux", "aarch64") if cfg!(target_env = "gnu") => Some("aarch64-unknown-linux-gnu"),
("linux", "aarch64") => Some("aarch64-unknown-linux-musl"),
_ => None,
}