zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 2dca73595f8113c99c9293d0eae97d912e47fe88 (tree)
parent 9aa93a045ebbf7d5c6349eb41e99ca516ab9ba65
Author: xtex <xtex@astrafall.org>
Date:   Fri, 19 Jun 2026 16:18:57 +0800

build: use new linker if both new-linker and use-llvm are true

Diffstat:
Mbuild.zig | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/build.zig b/build.zig @@ -223,7 +223,6 @@ pub fn build(b: *std.Build) !void { const use_llvm = b.option(bool, "use-llvm", "Use the llvm backend"); exe.use_llvm = use_llvm; - exe.use_lld = use_llvm; if (no_bin) { b.getInstallStep().dependOn(&exe.step);