binarycraft007
Results
2
comments of
binarycraft007
In ArchLinux, I installed mingw-w64-winpthreads, and added below code in build.zig ` main.addIncludeDir("/usr/x86_64-w64-mingw32/include"); ` ` main.addObjectFile("/usr/x86_64-w64-mingw32/lib/libpthread.a"); ` it builds successfully for windows binary, and runs without problem.
hit this too, my current workaround: ```zig const std = @import("std"); const builtin = @import("builtin"); const windows = std.os.windows; const WCHAR = windows.WCHAR; const in6addr_any = [_]u8{0} ** 16; const...