fix(loader): install arm64 wasi-sdk on arm64 windows
This commit is contained in:
parent
6dfa79013f
commit
60c3bed6a4
1 changed files with 5 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue