Skip to content

Commit 56976d5

Browse files
committed
disable self-hosted backend instead of resorting to dynamic linking
1 parent 2048a53 commit 56976d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.zig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ pub fn build(b: *std.Build) void {
112112

113113
const zdawn = b.addLibrary(.{
114114
.name = "zdawn",
115-
.linkage = .dynamic,
115+
.use_llvm = true,
116116
.root_module = b.createModule(.{
117117
.target = target,
118118
.optimize = optimize,
@@ -144,6 +144,7 @@ pub fn build(b: *std.Build) void {
144144

145145
const tests = b.addTest(.{
146146
.name = "zgpu-tests",
147+
.use_llvm = true,
147148
.root_module = b.createModule(.{
148149
.root_source_file = b.path("src/zgpu.zig"),
149150
.target = target,

0 commit comments

Comments
 (0)