From 601a5a463530cae9da467740234341082b46844b Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sat, 12 Feb 2022 23:02:12 -0700 Subject: [PATCH] gpu-dawn: use linux-x86_64 binary releases Signed-off-by: Stephen Gutekanst --- gpu-dawn/build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu-dawn/build.zig b/gpu-dawn/build.zig index e114c4aa..1e1e4908 100644 --- a/gpu-dawn/build.zig +++ b/gpu-dawn/build.zig @@ -194,7 +194,7 @@ pub fn linkFromBinary(b: *Builder, step: *std.build.LibExeObjStep, options: Opti const triple = blk: { if (target.cpu.arch.isX86()) switch (target.os.tag) { .windows => return linkFromSource(b, step, options), // break :blk "windows-x86_64", - .linux => return linkFromSource(b, step, options), // break :blk "linux-x86_64", + .linux => break :blk "linux-x86_64", .macos => break :blk "macos-x86_64", else => return linkFromSource(b, step, options), };