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.10.0-dev.699+55fa349ad ### Steps to Reproduce Note that this isn't really a problem for most purposes as nobody should be hitting the ARG_MAX limit in normal use. 1....

bug
contributor friendly
zig cc

### Zig Version 0.10.0-dev.84+4f4f0bc6f ### Steps to Reproduce ``` $ echo "pub fn main() void { }" > test.zig $ zig build-exe --name "hello/world" test.zig ``` ### Expected Behavior Exits...

bug
contributor friendly
stage2

### Zig Version 0.10.0-dev.263+c5ee73f65 ### Steps to Reproduce ```fish $ zig build-exe -fno-emit-bin -fno-LLVM nonexistent_file.zig ``` ### Expected Behavior ``` error: unable to load 'nonexistent_file.zig': FileNotFound ``` ### Actual Behavior...

bug
stage2

### Zig Version 0.10.0-dev.4870+be5130ec5 ### Steps to Reproduce Run `zig libc` ### Expected Behavior Don't panic, maybe print a non-zero exit code ### Actual Behavior ![image](https://user-images.githubusercontent.com/709451/147842679-a8d22392-bc8c-4a1c-bcb6-0a7e9ec96b06.png) ``` thread 28145757 panic:...

bug
os-macos

### Zig Version 0.10.0-dev.63+6b8e33d14 ### Steps to Reproduce ```zig const a = .{ // zig fmt: off .{ 0, 1 }, // zig fmt: on }; // No formatting here......

bug
zig fmt

### Zig Version 0.9.0 ### Steps to Reproduce Compile the following program with `zig cc hello.c -o hello` on macOS Catalina or Big Sur (not Monterey): ```c // hello.c #include...

bug
os-macos

### Zig Version 0.9.0-dev.1737+c42763f8c ### Steps to Reproduce ``` mkdir repro cd repro zig init-exe mkdir subdir mkdir other_subdir touch subdir/solution.zig touch other_subdir/solution.zig ``` edit `src/Main.zig` to ```zig const std...

zig build system

First, thanks so much for all your incredible work! This language and working environment are exactly what I've been hoping to find for many, many years. I'm trying to build...

bug
os-windows

### Zig Version 0.10.0-dev.40+303bad998 ### Steps to Reproduce Create an ARM assembly file named `test.s` with the following contents: ```asm mov r1, #0 ``` Compile that file to an object...

bug
enhancement
upstream

### Zig Version 0.9.0-dev.1414+cde3dd365 ### Steps to Reproduce Using [bazel-zig-cc](https://sr.ht/~motiejus/bazel-zig-cc/)@[361fc42b](https://git.sr.ht/~motiejus/bazel-zig-cc/tree/361fc42b2e1282ed078bf9c1ad281642e19858d4), build a cgo project with `zig cc` and `pure = off`. ```py3 go_binary( name = "some", embed = [":some_lib"], goarch...

bug
stage2