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.64+b835fd90c ### Steps to Reproduce and Observed Behavior ```zig var flag: bool = false; if (comptime flag) {} ``` ### Expected Behavior This worked in the previous...

bug
frontend
regression

### Zig Version v0.12.0-dev.3180+83e578a18 ### Steps to Reproduce and Observed Behavior OS: Arch Environment variables: http_proxy https_proxy ftp_proxy rsync_proxy no_proxy refers to 127.0.0.1:1080 All the other programs work well except...

### Zig Version 0.13.0-dev.4+c7ffdbcd4 ### Steps to Reproduce and Observed Behavior ## Environment This was run on a Debian testing system with the following installed: libsdl2-2.0-0:amd64 (2.30.2+dfsg-1) libsdl2-dev:amd64 (2.30.2+dfsg-1) libsdl2-gfx-1.0-0:amd64...

bug
arch-x86_64
backend-llvm
backend-self-hosted

### Zig Version master ### Steps to Reproduce and Observed Behavior compile and install as described in README.md ```sh uname -a 6.8.7-gentoo #1 SMP PREEMPT_DYNAMIC Fri Apr 19 23:09:45 CEST...

bug

EDIT: note to readers - this commit message is old Please read the current, updated one. this patch makes ComptimeStringMap accept only a single type parameter and return a known...

### Zig Version 0.12.0 ### Steps to Reproduce and Observed Behavior ```zig // bug.zig pub fn main() void { comptime var def: union(enum) { bar: []const u8, foo } =...

bug
frontend

closes #489 ### Why `@expect` takes a bool: - `@expect` affects branching codegen and you can only branch on a bool. - Expecting a specific value can be done with...

### Zig Version 0.13.0-dev.3+dddddcffd OS: macOS 14.4.1 ### Steps to Reproduce and Observed Behavior ``` zig init zig build ``` On an empty project the build errors out with a...

bug

Today the code generated by `zig.fmt` is far from desirable. [Here is a sketch](https://gcc.godbolt.org/z/ddf9q18sT) that I made up in a afternoon. Of course it's not a complete implementation, so it...

enhancement
optimization
standard library

This issue is a reminder to go look at [Third Party Tracking Issues (what is important to other people?)](https://github.com/ziglang/zig/wiki/Third-Party-Tracking-Issues-(what-is-important-to-other-people%3F)) and browse through third party tracking issues to learn what things...

use case