build(zig): support wasmtime for ARM64 Windows (MSVC)

(cherry picked from commit e0edfe1cb3)
This commit is contained in:
ObserverOfTime 2025-08-28 22:20:39 +03:00 committed by Amaan Qureshi
parent 77e5c1c8aa
commit cd503e803d
2 changed files with 9 additions and 0 deletions

View file

@ -83,6 +83,10 @@ pub fn wasmtimeDep(target: std.Target) []const u8 {
.msvc => "wasmtime_c_api_x86_64_windows",
else => null,
},
.aarch64 => switch (abi) {
.msvc => "wasmtime_c_api_aarch64_windows",
else => null,
},
else => null,
},
.macos => switch (arch) {