mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-09 23:29:03 +00:00
std.Build.Watch: not supported on haiku
This commit is contained in:
parent
2139eb75f9
commit
2cfa0f567d
2 changed files with 2 additions and 2 deletions
|
|
@ -415,7 +415,7 @@ pub fn main() !void {
|
||||||
else => return err,
|
else => return err,
|
||||||
};
|
};
|
||||||
|
|
||||||
var w = if (watch) try Watch.init() else undefined;
|
var w: Watch = if (watch and Watch.have_impl) try Watch.init() else undefined;
|
||||||
|
|
||||||
try run.thread_pool.init(thread_pool_options);
|
try run.thread_pool.init(thread_pool_options);
|
||||||
defer run.thread_pool.deinit();
|
defer run.thread_pool.deinit();
|
||||||
|
|
|
||||||
|
|
@ -600,7 +600,7 @@ const Os = switch (builtin.os.tag) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
.dragonfly, .freebsd, .netbsd, .openbsd, .ios, .macos, .tvos, .visionos, .watchos, .haiku => struct {
|
.dragonfly, .freebsd, .netbsd, .openbsd, .ios, .macos, .tvos, .visionos, .watchos => struct {
|
||||||
const posix = std.posix;
|
const posix = std.posix;
|
||||||
|
|
||||||
kq_fd: i32,
|
kq_fd: i32,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue