From 78edb10446e9c5d112d0b5ec6892e1d0e0af185c Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Fri, 19 Apr 2024 18:46:04 -0700 Subject: [PATCH] build: fix duplicate symbol machDawnGetProcTable Signed-off-by: Stephen Gutekanst --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 4fb6bf22..f3669272 100644 --- a/build.zig +++ b/build.zig @@ -312,7 +312,7 @@ pub fn build(b: *std.Build) !void { const test_step = b.step("test", "Run unit tests"); 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); } }