authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-07 20:46:49 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-07 20:46:49 -07:00
log5bd838ca3428a4ede13c5c5c94b36e7b93510bc2
treefa0318fe1706c33e014d4249c8f73cd978b1fe2f
parentfaae55bc0cc2a19c39c9faacbcf34a326ddb7779
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

update to zig 0.16.0


2 files changed, 5 insertions(+), 2 deletions(-)

build.zig+1-1
......@@ -14,7 +14,7 @@ pub fn build(b: *std.Build) void {
1414 }),
1515 });
1616 deps.addAllTo(tests);
17 tests.linkLibC();
17 tests.root_module.link_libc = true;
1818 tests.use_llvm = !disable_llvm;
1919 tests.use_lld = !disable_llvm;
2020 b.getInstallStep().dependOn(&tests.step);
test.zig+4-1
......@@ -5,7 +5,10 @@ const extras = @import("extras");
55const nio = @import("nio");
66
77test {
8 std.testing.refAllDeclsRecursive(pek);
8 const doc = comptime pek.parse(
9 \\html[lang="en"]()
10 );
11 _ = try pek.compile(struct {}, std.testing.allocator, nio.NullWriter{}, doc, {});
912}
1013
1114test "document" {