zig
zig copied to clipboard
General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
I'm on Windows-10 and have used *zig cc* for some projects. But now, after upgrading from zig ver 0.12 to 0.15, resulted in this link-error; `error: user32.lib: file not found`...
### Zig Version 0.15.0-dev.480+49c731805 ### Steps to Reproduce and Observed Behavior Ensure the Zig global cache directory is located on a filesystem which does not allow the character `:` in...
### Zig Version 0.14.0-dev.1002+71a27ebd8 ### Steps to Reproduce and Observed Behavior In a fresh `zig init` project: ```zig const std = @import("std"); pub fn build(b: *std.Build) void { const config_header...
Fixes #23993 Previously, if multiple build processes tried to create the same args file, there was a race condition with the use of the non-atomic `writeFile` function which could cause...
This allows us to rule out support for certain address spaces based on the OS in the future. For example, `ss` on x86 is not set up on mainstream OSs....