authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-01 16:13:29 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-01 16:13:29 -07:00
loge8516a937e7f3f72c0d8287539af016ffa03b4cd
treeb721058c048d7a335137fca299a620fdb4d3bd09
parent427cef6d15f4eeb921555d237c8096382a098d4a
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

update to zig 0.15.2


2 files changed, 12 insertions(+), 4 deletions(-)

build.zig+6-4
......@@ -3,13 +3,15 @@ const deps = @import("./deps.zig");
33
44pub fn build(b: *std.Build) void {
55 const target = b.standardTargetOptions(.{});
6 const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug;
6 const mode = b.option(std.builtin.OptimizeMode, "mode", "") orelse .Debug;
77 const disable_llvm = b.option(bool, "disable_llvm", "use the non-llvm zig codegen") orelse false;
88
99 const tests = b.addTest(.{
10 .root_source_file = b.path("test.zig"),
11 .target = target,
12 .optimize = mode,
10 .root_module = b.createModule(.{
11 .root_source_file = b.path("test.zig"),
12 .target = target,
13 .optimize = mode,
14 }),
1315 });
1416 deps.addAllTo(tests);
1517 tests.use_llvm = !disable_llvm;
licenses.txt+6
......@@ -1,9 +1,15 @@
11MPL-2.0:
22= https://spdx.org/licenses/MPL-2.0
33- This
4- git https://github.com/nektro/zig-nio
45
56MIT:
67= https://spdx.org/licenses/MIT
78- git https://github.com/nektro/zig-expect
89- git https://github.com/nektro/zig-extras
10- git https://github.com/nektro/zig-sys-darwin
11- git https://github.com/nektro/zig-sys-linux
912- git https://github.com/nektro/zig-unicode-ucd
13
14Unspecified:
15- system_lib c