need to compile with llvm because self-hosted doesn't work with asm

This commit is contained in:
2025-12-12 09:21:09 +01:00
parent 3211a7705b
commit b73ac766bf

View File

@@ -33,6 +33,7 @@ pub fn build(b: *std.Build) !void {
const exe = b.addExecutable(.{
.name = "flicker",
.root_module = mod,
.use_llvm = true,
});
exe.pie = true;
exe.lto = if (optimize == .Debug) .none else .full;