fix(loader): install arm64 wasi-sdk on arm64 windows

This commit is contained in:
ObserverOfTime 2025-09-20 10:09:57 +03:00 committed by Amaan Qureshi
parent 6dfa79013f
commit 60c3bed6a4

View file

@ -1156,7 +1156,11 @@ impl Loader {
"x86_64-macos"
}
} else if cfg!(target_os = "windows") {
"x86_64-windows"
if cfg!(target_arch = "aarch64") {
"arm64-windows"
} else {
"x86_64-windows"
}
} else if cfg!(target_os = "linux") {
if cfg!(target_arch = "aarch64") {
"arm64-linux"