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.3395+1e7dcaa3a ### Steps to Reproduce and Observed Output ```zig const S = struct { foo: u32, bar: u32, baz = 5, }; ``` Output: ``` ~ %...

error message

### Zig Version 0.9.1 ### Steps to Reproduce and Observed Behavior I use `zig c++ -target arm-linux-gnueabihf -mcpu=generic+v7a+vfp3+d32+thumb2+neon -mfpu=neon -mfloat-abi=hard` and it still cann't add neon to target-feature, and I...

bug

### Zig Version 0.9.1 ### Steps to Reproduce and Observed Behavior Sorry, I'm new to zig. If I'm wrong, please let me know. I'm trying use zig cc to compile...

bug

### Zig Version 0.11.0-dev.3312+ab37ab33c ### Steps to Reproduce and Observed Behavior sqlite has the following in its header: ``` typedef void (*sqlite3_destructor_type)(void*); #define SQLITE_STATIC ((sqlite3_destructor_type)0) #define SQLITE_TRANSIENT ((sqlite3_destructor_type)-1) ``` I'm...

bug
standard library
translate-c

### Zig Version 0.11.0-dev.3395+1e7dcaa3a ### Steps to Reproduce and Observed Behavior When we use an inline if, the result value is a pointer to the data. So if we say...

bug

### Zig Version 0.11.0-dev.3396+cb3265a3c ### Steps to Reproduce and Observed Output This code does not compile (expected). It used to cause a segmentation fault, but now it gives an unhelpful...

error message

Extracted from https://github.com/ziglang/zig/pull/14647. For example, a useful one will be "foreign binary", which might look like this: ``` [nix-shell:~/Downloads/zig/build-release]$ stage3/bin/zig build test-compiler-rt -fsummary Build Summary: 24/35 steps succeeded; 11 skipped;...

enhancement
contributor friendly
zig build system

### Zig Version 0.11.0-dev.3387+f04e65bc0 ### Steps to Reproduce and Observed Behavior This doesn't compile ```zig pub fn main() void { const S = struct { x: u8 }; var x...

bug

For FFIs which use C ABI as a least common denominator, but I'm sure also some header-only C libraries, may not use any stdlib externs, but might still need accoutrements...

proposal