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.11.0-dev.371+9d0ea0e3f ### Steps to Reproduce and Observed Behavior ``` Test [18/1557] test.shl... SKIP Test [19/1557] test.shr... SKIP Test [20/1557] test.rotr... SKIP Test [21/1557] test.rotl... SKIP Test [47/1557]...

bug
standard library
os-windows
arch-aarch64

### Zig Version 0.11.0-dev.363+870872dd6 ### Steps to Reproduce and Observed Behavior Save the following in a Windows-1252 encoded file: ```zig // ¶ test {} ``` (the `test {}` is not...

bug
standard library

### Zig Version 0.11.0-dev.343+4e078941d ### Steps to Reproduce and Observed Behavior ``` $ stage3\bin\zig.exe build test-standalone --search-prefix C:\Users\kubko\dev\zig-llvm -Dstatic-llvm -Dskip-non-native -Dskip-release error(gpa): memory address 0x1cf69da0000 leaked: C:\Users\kubko\dev\zig\stage3\lib\zig\std\array_list.zig:361:89: 0x7ff7836a50c3 in ensureTotalCapacityPrecise...

bug
os-windows
arch-aarch64

### Zig Version 0.11.0-dev.343+4e078941d ### Steps to Reproduce and Observed Behavior ``` $ stage3\bin\zig.exe build test-behavior --search-prefix C:\Users\kubko\dev\zig-llvm -Dstatic-llvm -Dskip-non-native ... LLVM Emit Object... Segmentation fault at address 0xaaaaaaaaaaaaaaaa C:\Users\kubko\dev\zig\src\value.zig:359:13:...

bug
os-windows
arch-aarch64
backend-llvm

### Zig Version 0.11.0-dev.343+4e078941d ### Steps to Reproduce and Observed Behavior ``` $ zig.exe test .\test\behavior\floatop.zig -Itest Test [17/43] test.@log2 with vectors... FAIL (TestUnexpectedResult) C:\Users\kubko\dev\zig\stage3\lib\zig\std\testing.zig:347:14: 0x7ff63216101f in expect (test.exe.obj) if...

bug
os-windows
arch-aarch64
backend-llvm

```zig const std = @import("std"); const page_size = 4096; test { try std.testing.expect(@log2(page_size) == 12); } ``` ``` test.zig:6:34: error: expected vector of floats or float type, found 'comptime_int' try...

enhancement
proposal
accepted

### Zig Version 0.11.0-dev.86+b83e4d965 ### Steps to Reproduce and Observed Behavior ```test.c typedef struct Origin { unsigned long x; unsigned long y; unsigned long z; } Origin; typedef struct Size...

bug
stage2
backend-llvm

This issue can be closed when we add CI test coverage that compiles the behavior tests with `-ofmt=c` and then compiles & runs them with GCC. Here's what happens currently,...

enhancement
contributor friendly
backend-c

Previously, the contents of zig.h were directly prepended to output .c files when using the C backend. It was extracted into an installation file in order to support the use...

proposal
backend-c

### Zig Version 0.11.0-dev.106+e53a542e0 ### Steps to Reproduce and Observed Behavior `clang -xc -isystem test -E /dev/null -v` shows `-isystem` at the top of the system search list: ```console #include...

bug
stage2