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

This implements the majority of floating-point operations on the native webassembly backend by either calling into compiler-rt or directly emitting instructions if available. Prior to this, operations on `f16` were...

[Proposal Clarification](https://github.com/ziglang/zig/issues/1840#issuecomment-558486115) ---- "windows" as most people think of it is a stack of - the nt kernel - ntdll.dll - kernel32.dll - user32.dll You don't have to use all...

contributor friendly
standard library
proposal
accepted
os-windows

Currently, if you pass multiple files to `zig test`, it fails with this error: ```zig error: found another zig file 'src/json_parser.zig' after root source file 'src/js_parser.zig' ``` Say you have...

proposal

### Context and Purpose Based on https://gist.github.com/harieamjari/61aa4420ae4ded5e86f5143e46d93573 by user @harieamjari the list of ARM run-time functions to double-check The official documentation is found here https://github.com/ARM-software/abi-aa/releases and the runtime abi (Q32022)...

enhancement
arch-arm

### Zig Version 0.11.0-dev.900+0fb53bd24 ### Steps to Reproduce and Observed Behavior ``` const testing = @import("std").testing; const DirectionalPad = packed struct { x: i2 = 0, y: i2 = 0,...

bug

A batch of fixes to docs and text I amassed over time. I wasn't sure when the right time would be to post this but I had my first merge...

Context: https://github.com/dotnet/runtime/blob/492a5201fdb26eae5288fd6653945a689a601f3a/src/mono/mono/mini/main-core.c#L13-L25 What's happening here is that the functions are exported as `stdcall` on `i386-windows` but `cdecl` everywhere else. The tricky part is that even when exported as `stdcall`, the...

use case

### Zig Version 0.11.0-dev.1857+010596c93 ### Steps to Reproduce and Observed Behavior Given `repo.c`: ```c static int foo (int x) { switch (x) { int y; case 0: y = 3;...

bug
translate-c