gpu-dawn: utilize linux-aarch64 binary releases
This commit is contained in:
parent
c0a5bc655c
commit
f14536f5f0
1 changed files with 1 additions and 1 deletions
|
|
@ -241,7 +241,7 @@ pub fn Sdk(comptime deps: anytype) type {
|
||||||
const target = step.target_info.target;
|
const target = step.target_info.target;
|
||||||
const binaries_available = switch (target.os.tag) {
|
const binaries_available = switch (target.os.tag) {
|
||||||
.windows => target.abi.isGnu(),
|
.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: {
|
.macos => blk: {
|
||||||
if (!target.cpu.arch.isX86() and !target.cpu.arch.isAARCH64()) break :blk false;
|
if (!target.cpu.arch.isX86() and !target.cpu.arch.isAARCH64()) break :blk false;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue