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
commit aaab68bb9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);