authorgravatar for ypsvlq@gmail.comElaine Gibson <ypsvlq@gmail.com> 2025-05-31 03:14:01+01:00
committergravatar for ypsvlq@gmail.comElaine Gibson <ypsvlq@gmail.com> 2025-06-05 13:45:47+01:00
log2cfa0f567d42a8dace0fb186c710548f18ae0639
treef408d5d6d9493795222ac81770e8aed8e9cd0db1
parent2139eb75f9e1e6fa766797b60566b254efce2f8f

std.Build.Watch: not supported on haiku


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

lib/compiler/build_runner.zig+1-1
......@@ -415,7 +415,7 @@ pub fn main() !void {
415415 else => return err,
416416 };
417417
418 var w = if (watch) try Watch.init() else undefined;
418 var w: Watch = if (watch and Watch.have_impl) try Watch.init() else undefined;
419419
420420 try run.thread_pool.init(thread_pool_options);
421421 defer run.thread_pool.deinit();
lib/std/Build/Watch.zig+1-1
......@@ -600,7 +600,7 @@ const Os = switch (builtin.os.tag) {
600600 };
601601 }
602602 },
603 .dragonfly, .freebsd, .netbsd, .openbsd, .ios, .macos, .tvos, .visionos, .watchos, .haiku => struct {
603 .dragonfly, .freebsd, .netbsd, .openbsd, .ios, .macos, .tvos, .visionos, .watchos => struct {
604604 const posix = std.posix;
605605
606606 kq_fd: i32,