Skip to content

Commit a626d60

Browse files
authored
fix: use musl version of wasm-bindgen on aarch64 (#5524)
1 parent 487aa05 commit a626d60

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/src/wasm_bindgen.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ impl WasmBindgen {
437437
} else if cfg!(all(target_os = "linux", target_arch = "x86_64")) {
438438
"x86_64-unknown-linux-musl"
439439
} else if cfg!(all(target_os = "linux", target_arch = "aarch64")) {
440-
"aarch64-unknown-linux-gnu"
440+
"aarch64-unknown-linux-musl"
441441
} else if cfg!(all(target_os = "macos", target_arch = "x86_64")) {
442442
"x86_64-apple-darwin"
443443
} else if cfg!(all(target_os = "macos", target_arch = "aarch64")) {

0 commit comments

Comments
 (0)