From 1839e4cb4437a212290704a86f0b2973e9b3cfa0 Mon Sep 17 00:00:00 2001 From: AnErrupTion Date: Tue, 14 Oct 2025 19:42:16 +0200 Subject: [PATCH] Use LLVM in Debug (closes #832) Signed-off-by: AnErrupTion --- build.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.zig b/build.zig index fd3715c..7014956 100644 --- a/build.zig +++ b/build.zig @@ -62,6 +62,8 @@ pub fn build(b: *std.Build) !void { .target = target, .optimize = optimize, }), + // Here until the native backend matures in terms of performance + .use_llvm = true, }); const zigini = b.dependency("zigini", .{ .target = target, .optimize = optimize });