Update for zig 0.16

This commit is contained in:
Frank Denis
2026-03-12 18:50:01 +01:00
parent 89fc95b6d2
commit 6a79fae4cb
+1 -1
View File
@@ -228,7 +228,7 @@ pub fn build(b: *std.Build) !void {
});
// work out which libraries we are building
var libs = std.ArrayList(*Compile){};
var libs: std.ArrayListUnmanaged(*Compile) = .empty;
defer libs.deinit(heap.page_allocator);
if (build_static) {
try libs.append(heap.page_allocator, static_lib);