need to compile with llvm because self-hosted doesn't work with asm
This commit is contained in:
@@ -33,6 +33,7 @@ pub fn build(b: *std.Build) !void {
|
|||||||
const exe = b.addExecutable(.{
|
const exe = b.addExecutable(.{
|
||||||
.name = "flicker",
|
.name = "flicker",
|
||||||
.root_module = mod,
|
.root_module = mod,
|
||||||
|
.use_llvm = true,
|
||||||
});
|
});
|
||||||
exe.pie = true;
|
exe.pie = true;
|
||||||
exe.lto = if (optimize == .Debug) .none else .full;
|
exe.lto = if (optimize == .Debug) .none else .full;
|
||||||
|
|||||||
Reference in New Issue
Block a user