build(zig): use LLVM for building nlua0

problem: https://codeberg.org/ziglang/zig/issues/31272
solution: set `.use_llvm = true` until the next zig release
This commit is contained in:
Chinmay Dalal
2026-05-02 23:52:55 -04:00
parent d2acc69644
commit 637c4422d8

View File

@@ -23,6 +23,7 @@ pub fn build_nlua0(
.optimize = optimize,
.link_libc = true,
}),
.use_llvm = true,
});
const nlua0_mod = nlua0_exe.root_module;