libxev is a cross-platform, high-performance event loop that provides abstractions for non-blocking IO, timers, events, and more and works on Linux (io_uring or epoll), macOS (kqueue), and Wasm + WASI. Available as both a Zig and C API.
this PR allows libxev to compile with zig version 0.13. I'm a little unsure about the one instance where on my machine I had to use .{ .cwd_relative = file } rather than b.path(file) for the pkg-config .pc file install step.
this PR allows libxev to compile with zig version 0.13. I'm a little unsure about the one instance where on my machine I had to use
.{ .cwd_relative = file }
rather thanb.path(file)
for the pkg-config.pc
file install step.