karlseguin / http.zig

An HTTP/1.1 server for zig
MIT License
454 stars 31 forks source link

arm-linux-musleabihf #35

Closed sarjsheff closed 6 months ago

sarjsheff commented 6 months ago
# zig version
0.12.0-dev.2341+92211135f
zig build -Dtarget=arm-linux-musleabihf
http.zig/src/worker.zig:967:66: error: expected type 'isize', found 'u32'
                if (timeout_sec) |ts| @intFromPtr(&os.timespec{ .tv_sec = ts, .tv_nsec = 0 }) else 0,

quick workaround:

if (timeout_sec) |ts| @intFromPtr(&os.timespec{ .tv_sec = @intCast(ts), .tv_nsec = 0 }) else 0,