From b1af960e1bea8506c25179775c18f902a5cb8c87 Mon Sep 17 00:00:00 2001 From: Isaac Freund Date: Thu, 21 May 2026 09:05:23 +0200 Subject: [PATCH] build: fix default for -Dllvm build option --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 91647fd..37f8bdd 100644 --- a/build.zig +++ b/build.zig @@ -16,7 +16,7 @@ pub fn build(b: *Build) !void { const strip = b.option(bool, "strip", "Omit debug information") orelse false; const pie = b.option(bool, "pie", "Build a Position Independent Executable") orelse false; - const use_llvm = b.option(bool, "llvm", "Force use of Zig's LLVM backend and the lld linker") orelse false; + const use_llvm = b.option(bool, "llvm", "Force use of Zig's LLVM backend and the lld linker"); const omit_frame_pointer = switch (optimize) { .Debug, .ReleaseSafe => false,