fix: add use_llvm to main executable

This commit is contained in:
Brett Broadhurst 2026-04-03 16:08:58 -06:00
parent faac9b54d8
commit 6924e929d8
Failed to generate hash of commit

View file

@ -19,6 +19,9 @@ pub fn build(b: *std.Build) void {
.{ .name = "ink", .module = mod },
},
}),
// Added because of a switch on a corrupt value on git hash
// a8a6ce8d0f14c1dd5b3ea42e46f3226bcbe11a87
.use_llvm = true,
});
b.installArtifact(exe);