From f14536f5f029b8816a7b8e39c6d22d1fd836176e Mon Sep 17 00:00:00 2001 From: Ali Chraghi Date: Tue, 27 Dec 2022 16:35:19 +0330 Subject: [PATCH] gpu-dawn: utilize linux-aarch64 binary releases --- libs/gpu-dawn/sdk.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gpu-dawn/sdk.zig b/libs/gpu-dawn/sdk.zig index 0dfc361b..5e882cdf 100644 --- a/libs/gpu-dawn/sdk.zig +++ b/libs/gpu-dawn/sdk.zig @@ -241,7 +241,7 @@ pub fn Sdk(comptime deps: anytype) type { const target = step.target_info.target; const binaries_available = switch (target.os.tag) { .windows => target.abi.isGnu(), - .linux => target.cpu.arch.isX86() and (target.abi.isGnu() or target.abi.isMusl()), + .linux => (target.cpu.arch.isX86() or target.cpu.arch.isAARCH64()) and (target.abi.isGnu() or target.abi.isMusl()), .macos => blk: { if (!target.cpu.arch.isX86() and !target.cpu.arch.isAARCH64()) break :blk false;