gpu-dawn: use binary releases for musl libc
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
49fc433b8f
commit
95d33f2eb8
1 changed files with 1 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ pub fn linkFromBinary(b: *Builder, step: *std.build.LibExeObjStep, options: Opti
|
|||
const target = (std.zig.system.NativeTargetInfo.detect(b.allocator, step.target) catch unreachable).target;
|
||||
const binaries_available = switch (target.os.tag) {
|
||||
.windows => false, // TODO(build-system): add Windows binaries
|
||||
.linux => target.cpu.arch.isX86() and target.abi.isGnu(),
|
||||
.linux => target.cpu.arch.isX86() and (target.abi.isGnu() or target.abi == .musl),
|
||||
.macos => blk: {
|
||||
if (!target.cpu.arch.isX86() and !target.cpu.arch.isAARCH64()) break :blk false;
|
||||
if (target.abi != .gnu) break :blk false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue