zig icon indicating copy to clipboard operation
zig copied to clipboard

General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

Results 2216 zig issues
Sort by recently updated
recently updated
newest added

### Zig Version 0.12.0-dev.1835+697b8f7d2 ### Steps to Reproduce and Observed Behavior Compile example program with `zig build-obj runtime_safety_switch_prong_error.zig` `runtime_safety_switch_prong_error.zig`: ```zig pub fn panic(_: []const u8, _: @TypeOf(@errorReturnTrace()), _: ?usize) noreturn...

bug
frontend

In line with #18067, add checked equivalents to `*AssumeCapacity` for working with non-resizable `ArrayListUnmanaged`s.

Fixes #17323 Extracted common branch from prongs of switch on `air_tag`.

Currently, `std.fs.Dir.makeOpenPath` optimistically tries to open an existing directory, falling back to creating it and then opening it if it did not exist. This leads to syscalls like this in...

enhancement
optimization
breaking
standard library

(wip, will clean up and make easier to review before removing draft status)

### Zig Version 0.12.0-dev.1849+bb0f7d55e ### Steps to Reproduce and Observed Behavior I have a project where I need to cross-compile to RPi using a 3rd party library that I don't...

bug

### Zig Version master ### Steps to Reproduce and Observed Output I followed the instructions on the Github README for a boostrap compiler without LLVM: ``` $ cc -o bootstrap...

error message

Adds a variant to the LazyPath union representing a parent directory of a generated path. ```zig const LazyPath = union(enum) { generated_dirname: struct { generated: *const GeneratedFile, up: usize, },...