gpu-dawn: use macos-aarch64 binary releases

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-02-12 22:57:53 -07:00
parent f2c96daa51
commit 47d10c49a5

View file

@ -199,7 +199,7 @@ pub fn linkFromBinary(b: *Builder, step: *std.build.LibExeObjStep, options: Opti
else => return linkFromSource(b, step, options),
};
if (target.cpu.arch.isAARCH64()) switch (target.os.tag) {
.macos => return linkFromSource(b, step, options), // break :blk "macos-aarch64",
.macos => break :blk "macos-aarch64",
else => return linkFromSource(b, step, options),
};
return linkFromSource(b, step, options);