commit - bde804712a4618f935f425e2983d30fd324b3e4e
commit + 7b9ed7a39e3d9a6b73b9bca5dde1780ad6b43137
blob - 91647fd559ed4f0eca8c04b309fad836fd02288c
blob + 37f8bdd083cec5f14b99f83c6a40e4d250fab896
--- build.zig
+++ build.zig
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,