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 2035 zig issues
Sort by recently updated
recently updated
newest added

### Zig Version 0.9.1, on ArtixLinux x64, normal kernel, and hardened. ### Steps to Reproduce build.zig: ``` const std = @import("std"); pub fn build(b: *std.build.Builder) void { const target =...

bug
standard library

### Zig Version 0.10.0-dev.2489+33826a6a2 ### Steps to Reproduce Create a `zig build` script, add a `addLibPath("foo")` and a `linkSystemLibrary("bar")` ### Expected Behavior The `-Lfoo` argument comes before the `-lbar` argument....

bug
zig build system

### Zig Version 0.9.1 and greater ### Steps to Reproduce Run this program ```zig const std = @import("std"); pub const event_loop_mode = .single_threaded; pub const io_mode = .evented; pub fn...

bug
stage1

### Zig Version 0.10.0-dev.3264+d99c32c2e ### Steps to Reproduce 1. Build LLVM 14.0.6 with [this](https://www.sgregoratto.me/paste/llvm-14-illumos.patch) patch applied. It works around some rough spots that haven't been fixed in Solaris. You can...

bug
stage2
os-solaris

### Zig Version 0.10.0-dev.3071+8e75ba653 ### Steps to Reproduce When compiling Zig (the compiler) to Wasm/WASI, if it's compiled in non-release mode, it hangs in both browser and server. ### Expected...

bug
stage2
os-wasi

### Zig Version 0.10.0-dev.3027+0e26c6149 ### Steps to Reproduce # podman run --rm -it registry.access.redhat.com/ubi9 dnf install -y bsdtar gcc-c++ jq && rpm -qa | grep -E "binutils|kernel-headers|glibc-devel|gcc-c++" export PATH=/opt/zig:/usr/sbin:/usr/bin:/sbin:/bin $...

bug
stage2

### Zig Version 0.10.0-dev.2981+7090f0471 ### Steps to Reproduce build with this command: ```sh zig cc -target aarch64-ios -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk -Ithird_party/utf8_range -c utf8_range/range2-neon.c -o ./range2-neon.c.o ``` If I add `--target=arm64-apple-ios9.0`, get...

bug
zig cc
os-ios

Reason: [bazel-zig-cc](https://sr.ht/~motiejus/bazel-zig-cc) invokes `zig cc`. Bazel takes care of parallelism itself, so it will assume zig is a "simple" command that uses a single core. It is not, however. On...

enhancement
stage2

### Zig Version 0.10.0-dev.2836+2360f8c49 ### Steps to Reproduce ```zig pub fn main() {} ``` ``` TERM=dumb zig run x.zig ``` ### Expected Behavior ``` x.zig:1:15: error: expected return type expression,...

bug
stage2

### Zig Version 0.10.0-dev.2880+6f0807f50 ### Steps to Reproduce try cross build project for android with libc.txt file. use `zig cc` as clang. ### Expected Behavior expect there is crt_dir and...

bug
zig cc
os-android