From a0aae5da14de259a3bee90b91ed78b49dc5e7c8b Mon Sep 17 00:00:00 2001 From: Roman Pytkov Date: Thu, 26 Feb 2026 22:36:03 +0300 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=BB=D1=83=D1=87=D1=88=D0=B5=D0=B8?= =?UTF-8?q?=D0=B5=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.zig | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 3e76c00..56ebed9 100644 --- a/build.zig +++ b/build.zig @@ -8,7 +8,8 @@ pub fn build(b: *std.Build) void { const exe = b.addExecutable(.{ .name = "Zivro", - .use_llvm = optimize == .Debug, + .use_llvm = true, + .use_lld = true, .root_module = b.createModule(.{ .root_source_file = b.path("src/main.zig"), .target = target, @@ -19,7 +20,7 @@ pub fn build(b: *std.Build) void { }, }), }); - + exe.bundle_compiler_rt = true; b.installArtifact(exe); const run_step = b.step("run", "Run the app");