Skip to content

Commit 0ebedd9

Browse files
committed
Support for aarch64-pc-windows-msvc
1 parent 68e7d65 commit 0ebedd9

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,11 @@ jobs:
178178
rust: stable
179179
target: x86_64-pc-windows-msvc
180180
features: full-async
181+
- task: bindings
182+
os: windows-11-arm
183+
rust: stable
184+
target: aarch64-pc-windows-msvc
185+
features: full-async
181186
- task: test
182187
os: windows-latest
183188
rust: stable

sys/build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ fn download_wasi_sdk() -> PathBuf {
3232
("macos", "x86") | ("macos", "x86_64") => "x86_64-macos",
3333
("macos", "aarch64") => "arm64-macos",
3434
("windows", "x86") | ("windows", "x86_64") => "x86_64-windows",
35+
("windows", "aarch64") => "arm64-windows",
3536
other => panic!("Unsupported platform tuple {:?}", other),
3637
};
3738

0 commit comments

Comments
 (0)