build: fix duplicate symbol machDawnGetProcTable

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-04-19 18:46:04 -07:00
parent 2bc17a33fb
commit 78edb10446

View file

@ -312,7 +312,7 @@ pub fn build(b: *std.Build) !void {
const test_step = b.step("test", "Run unit tests"); const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_unit_tests.step); test_step.dependOn(&run_unit_tests.step);
if (want_sysgpu) linkSysgpu(b, &unit_tests.root_module) else link(b, unit_tests, &unit_tests.root_module); if (want_sysgpu) linkSysgpu(b, &unit_tests.root_module);
} }
} }