Merge pull request #203 from antlilja/global-cache-builder

Pass global cache argument to std.build.Builder.create
This commit is contained in:
Alexandros Naskos
2020-12-12 19:00:26 +02:00
committed by GitHub

View File

@@ -17,7 +17,7 @@ pub fn main() !void {
const allocator = &arena.allocator;
const builder = try Builder.create(allocator, "", "", "");
const builder = try Builder.create(allocator, "", "", "", "");
defer builder.destroy();
try runBuild(builder);