ziglang/zig
260
6.0k
Fork
You've already forked zig
775

unused std.Io functions are not optimized out leading to executable bloat #31421

Open
opened 2026年03月08日 11:29:04 +01:00 by zxrt · 12 comments

Zig Version

0.16.0-dev.2682+02142a54d

Steps to Reproduce and Observed Behavior

I am using the Linux x86_64 versions of the compilers listed at https://ziglang.org/download/.

The file that I am compiling is simply this:

// main.zig
pub fn main() void {}

This is how I compile the file in each version:

./zig-x86_64-linux-0.15.2/zig build-exe -O ReleaseSmall -fstrip --name oldmain main.zig
./zig-x86_64-linux-0.16.0-dev.2682+02142a54d/zig build-exe -O ReleaseSmall -fstrip --name newmain main.zig

There is a 21 times increase in the outputted executable size:

4.9K	oldmain
101K	newmain

Looking at the executable dumps this size increase seems to be related to the new changes in std.Io and std.process but I may be wrong about that.

Expected Behavior

The executable size produced by 0.16.0 should be around that of 0.15.2.

### Zig Version 0.16.0-dev.2682+02142a54d ### Steps to Reproduce and Observed Behavior I am using the Linux x86_64 versions of the compilers listed at [https://ziglang.org/download/](https://ziglang.org/download/). The file that I am compiling is simply this: ``` // main.zig pub fn main() void {} ``` This is how I compile the file in each version: ``` ./zig-x86_64-linux-0.15.2/zig build-exe -O ReleaseSmall -fstrip --name oldmain main.zig ./zig-x86_64-linux-0.16.0-dev.2682+02142a54d/zig build-exe -O ReleaseSmall -fstrip --name newmain main.zig ``` There is a 21 times increase in the outputted executable size: ``` 4.9K oldmain 101K newmain ``` Looking at the executable dumps this size increase seems to be related to the new changes in `std.Io` and `std.process` but I may be wrong about that. ### Expected Behavior The executable size produced by 0.16.0 should be around that of 0.15.2.
andrewrk added this to the Urgent milestone 2026年03月09日 00:33:10 +01:00
Contributor
Copy link

+1

pubfnmain()void{}

zig build-exe main.zig -OReleaseSmall -fstrip -target x86_64-linux -fsingle-threaded
wc -c main
113256 main

zig-0.15.2 build-exe main.zig -OReleaseSmall -fstrip -target x86_64-linux -fsingle-threaded
wc -c main
1912 main

+1 ```zig pub fn main() void {} ``` > zig build-exe main.zig -OReleaseSmall -fstrip -target x86_64-linux -fsingle-threaded > wc -c main 113256 main > zig-0.15.2 build-exe main.zig -OReleaseSmall -fstrip -target x86_64-linux -fsingle-threaded > wc -c main 1912 main

On master:

pubconstpanic=@import("std").debug.no_panic;pubfnmain()void{}
pubconstpanic=@import("std").debug.simple_panic;pubfnmain()void{}
$ zig build-exe -OReleaseSmall no_panic.zig
$ zig build-exe -OReleaseSmall simple_panic.zig
$ ls -sh no_panic simple_panic
8.0K no_panic 132K simple_panic

--- a/lib/std/Thread.zig
+++ b/lib/std/Thread.zig
@@ -1741,6 +1741,6 @@ pub fn maybeAttachSignalStack() void {
 }, null) catch |err| switch (err) {
 error.SizeTooSmall => unreachable, // `std.options.signal_stack_size` must be sufficient for the target
 error.PermissionDenied => unreachable, // called `maybeAttachSignalStack` from a signal handler
- error.Unexpected => @panic("unexpected error attaching signal stack"),
+ error.Unexpected => unreachable,
 };
 }
$ ls -sh before after
8.0K after 132K before
On master: ```zig pub const panic = @import("std").debug.no_panic; pub fn main() void {} ``` ```zig pub const panic = @import("std").debug.simple_panic; pub fn main() void {} ``` ```console $ zig build-exe -OReleaseSmall no_panic.zig $ zig build-exe -OReleaseSmall simple_panic.zig $ ls -sh no_panic simple_panic 8.0K no_panic 132K simple_panic ``` <hr> ```diff --- a/lib/std/Thread.zig +++ b/lib/std/Thread.zig @@ -1741,6 +1741,6 @@ pub fn maybeAttachSignalStack() void { }, null) catch |err| switch (err) { error.SizeTooSmall => unreachable, // `std.options.signal_stack_size` must be sufficient for the target error.PermissionDenied => unreachable, // called `maybeAttachSignalStack` from a signal handler - error.Unexpected => @panic("unexpected error attaching signal stack"), + error.Unexpected => unreachable, }; } ``` ```console $ ls -sh before after 8.0K after 132K before ```
Contributor
Copy link

Seems to be fixed.

128.8 KB 28 Mar newmain_0.16.0-dev.2960
 5.6 KB 28 Mar newmain_0.16.0-dev.3006
 4.8 KB 28 Mar oldmain
Seems to be fixed. ```bash 128.8 KB 28 Mar newmain_0.16.0-dev.2960 5.6 KB 28 Mar newmain_0.16.0-dev.3006 4.8 KB 28 Mar oldmain ```
Contributor
Copy link

above fix included in 9ac1386c10/std/Thread.zig

above fix included in https://codeberg.org/ziglang/zig/commit/9ac1386c10736bc249f3891f34f23424531917a5?files=lib/std/Thread.zig

Oops, did not mean to commit that, but there's also no reason to revert it.

Oops, did not mean to commit that, but there's also no reason to revert it.
jacobly modified the milestone from Urgent to 0.16.0 2026年03月28日 00:43:03 +01:00
Contributor
Copy link

should it be closed? still 2.5x increase

zig build-exe main.zig -OReleaseSmall -fstrip -target x86_64-linux -fsingle-threaded
wc -c main
5080 main

zig-0.15.2 build-exe main.zig -OReleaseSmall -fstrip -target x86_64-linux -fsingle-threaded
wc -c main
1912 main

should it be closed? still 2.5x increase > zig build-exe main.zig -OReleaseSmall -fstrip -target x86_64-linux -fsingle-threaded wc -c main 5080 main > zig-0.15.2 build-exe main.zig -OReleaseSmall -fstrip -target x86_64-linux -fsingle-threaded wc -c main 1912 main

The main thing this was tracking was the dead code bloat from unused Io functions.

The main thing this was tracking was the dead code bloat from unused Io functions.
andrewrk modified the milestone from 0.16.0 to Urgent 2026年03月28日 01:00:18 +01:00

The remaining code delta can be fixed with:

--- a/lib/std/Io/Threaded.zig
+++ b/lib/std/Io/Threaded.zig
@@ -57,14 +57,9 @@ use_fcopyfile: UseFcopyfile = .default,
 use_fchmodat2: UseFchmodat2 = .default,
 disable_memory_mapping: bool,
 
-stderr_writer: File.Writer = .{
- .io = undefined,
- .interface = File.Writer.initInterface(&.{}),
- .file = if (is_windows) undefined else .stderr(),
- .mode = .streaming,
-},
-stderr_mode: Io.Terminal.Mode = .no_color,
 stderr_writer_initialized: bool = false,
+stderr_writer: File.Writer = undefined,
+stderr_mode: Io.Terminal.Mode = .no_color,
 stderr_mutex: Io.Mutex = .init,
 stderr_mutex_locker: std.Thread.Id = Thread.invalid_id,
 stderr_mutex_lock_count: usize = 0,
@@ -13804,8 +13799,12 @@ fn tryLockStderr(userdata: ?*anyopaque, terminal_mode: ?Io.Terminal.Mode) Io.Can
 fn initLockedStderr(t: *Threaded, terminal_mode: ?Io.Terminal.Mode) Io.Cancelable!Io.LockedStderr {
 if (!t.stderr_writer_initialized) {
 const io_t = io(t);
- if (is_windows) t.stderr_writer.file = .stderr();
- t.stderr_writer.io = io_t;
+ t.stderr_writer = .{
+ .io = io_t,
+ .interface = File.Writer.initInterface(&.{}),
+ .file = .stderr(),
+ .mode = .streaming,
+ };
 t.stderr_writer_initialized = true;
 t.scanEnviron();
 const NO_COLOR = t.environ.exist.NO_COLOR;

And the remaining data delta is a single global variable, which fails to be eliminated because of the argv0 and environ stores.

The remaining code delta can be fixed with: ```diff --- a/lib/std/Io/Threaded.zig +++ b/lib/std/Io/Threaded.zig @@ -57,14 +57,9 @@ use_fcopyfile: UseFcopyfile = .default, use_fchmodat2: UseFchmodat2 = .default, disable_memory_mapping: bool, -stderr_writer: File.Writer = .{ - .io = undefined, - .interface = File.Writer.initInterface(&.{}), - .file = if (is_windows) undefined else .stderr(), - .mode = .streaming, -}, -stderr_mode: Io.Terminal.Mode = .no_color, stderr_writer_initialized: bool = false, +stderr_writer: File.Writer = undefined, +stderr_mode: Io.Terminal.Mode = .no_color, stderr_mutex: Io.Mutex = .init, stderr_mutex_locker: std.Thread.Id = Thread.invalid_id, stderr_mutex_lock_count: usize = 0, @@ -13804,8 +13799,12 @@ fn tryLockStderr(userdata: ?*anyopaque, terminal_mode: ?Io.Terminal.Mode) Io.Can fn initLockedStderr(t: *Threaded, terminal_mode: ?Io.Terminal.Mode) Io.Cancelable!Io.LockedStderr { if (!t.stderr_writer_initialized) { const io_t = io(t); - if (is_windows) t.stderr_writer.file = .stderr(); - t.stderr_writer.io = io_t; + t.stderr_writer = .{ + .io = io_t, + .interface = File.Writer.initInterface(&.{}), + .file = .stderr(), + .mode = .streaming, + }; t.stderr_writer_initialized = true; t.scanEnviron(); const NO_COLOR = t.environ.exist.NO_COLOR; ``` And the remaining data delta is a single global variable, which fails to be eliminated because of the `argv0` and `environ` stores.

"empty main" is a good benchmark; however, let's see what the situation is with a basic "hello-world" sample.

hello.zig:

conststd=@import("std");pubfnmain()void{std.debug.print("Hello, world!",.{});}

Build command:

zigbuild-exehello.zig-OReleaseSmall-targetx86_64-windows-gnu-fstrip-fsingle-threaded--name(zigversion|strtrim)

And results:

╭───┬───────────────────────────────┬──────┬──────────┬───────────────╮
│ # │ name │ type │ size │ modified │
├───┼───────────────────────────────┼──────┼──────────┼───────────────┤
│ 0 │ 0.12.0.exe │ file │ 3,0 kB │ 2 minutes ago │
│ 1 │ 0.14.0.exe │ file │ 4,0 kB │ 2 minutes ago │
│ 2 │ 0.15.0-dev.451+a843be44a.exe │ file │ 4,0 kB │ 2 minutes ago │
│ 3 │ 0.15.1.exe │ file │ 11,7 kB │ a minute ago │
│ 4 │ 0.16.0-dev.1484+d0ba6642b.exe │ file │ 14,8 kB │ a minute ago │
│ 5 │ 0.16.0-dev.3128+ad7a02822.exe │ file │ 365,0 kB │ a minute ago │
╰───┴───────────────────────────────┴──────┴──────────┴───────────────╯

As you can see, the binary size on the nightly is over 100 times larger than on 0.12.0.

"empty main" is a good benchmark; however, let's see what the situation is with a basic "hello-world" sample. `hello.zig`: ```zig const std = @import("std"); pub fn main() void { std.debug.print("Hello, world!", .{}); } ``` Build command: ```nu zig build-exe hello.zig -O ReleaseSmall -target x86_64-windows-gnu -fstrip -fsingle-threaded --name (zig version | str trim) ``` And results: ``` ╭───┬───────────────────────────────┬──────┬──────────┬───────────────╮ │ # │ name │ type │ size │ modified │ ├───┼───────────────────────────────┼──────┼──────────┼───────────────┤ │ 0 │ 0.12.0.exe │ file │ 3,0 kB │ 2 minutes ago │ │ 1 │ 0.14.0.exe │ file │ 4,0 kB │ 2 minutes ago │ │ 2 │ 0.15.0-dev.451+a843be44a.exe │ file │ 4,0 kB │ 2 minutes ago │ │ 3 │ 0.15.1.exe │ file │ 11,7 kB │ a minute ago │ │ 4 │ 0.16.0-dev.1484+d0ba6642b.exe │ file │ 14,8 kB │ a minute ago │ │ 5 │ 0.16.0-dev.3128+ad7a02822.exe │ file │ 365,0 kB │ a minute ago │ ╰───┴───────────────────────────────┴──────┴──────────┴───────────────╯ ``` As you can see, the binary size on the nightly is over 100 times larger than on 0.12.0.
andrewrk changed title from (削除) Significant increase in generated executable size when moving from version 0.15.2 to 0.16.0 (削除ここまで) to unused std.Io functions are not optimized out leading to executable bloat 2026年04月07日 14:50:52 +02:00

This will be a known regression in the 0.16.x release, with plan to address it in the future.

This will be a known regression in the 0.16.x release, with plan to address it in the future.

For the hello world from the langref:

conststd=@import("std");pubfnmain(init:std.process.Init)!void{trystd.Io.File.stdout().writeStreamingAll(init.io,"Hello, World!\n");}

the only things currently causing unused std.Io functions to not be optimized out are:

--- a/lib/std/Io/File.zig
+++ b/lib/std/Io/File.zig
@@ -610,7 +610,7 @@ pub fn writerStreaming(file: File, io: Io, buffer: []u8) Writer {
 
 /// This is a low-level API that calls the `Io` interface function directly.
 /// For a higher level API, see `writerStreaming`.
-pub fn writeStreaming(file: File, io: Io, header: []const u8, data: []const []const u8, splat: usize) Writer.Error!usize {
+pub inline fn writeStreaming(file: File, io: Io, header: []const u8, data: []const []const u8, splat: usize) Writer.Error!usize {
 return (try io.operate(.{ .file_write_streaming = .{
 .file = file,
 .header = header,
diff --git a/lib/std/Io/Threaded.zig b/lib/std/Io/Threaded.zig
index 0bec8a068f..460fa6470e 100644
--- a/lib/std/Io/Threaded.zig
+++ b/lib/std/Io/Threaded.zig
@@ -13809,6 +13809,7 @@ fn tryLockStderr(userdata: ?*anyopaque, terminal_mode: ?Io.Terminal.Mode) Io.Can
 }
 
 fn initLockedStderr(t: *Threaded, terminal_mode: ?Io.Terminal.Mode) Io.Cancelable!Io.LockedStderr {
+ if (true) @trap();
 if (!t.stderr_writer_initialized) {
 const io_t = io(t);
 if (is_windows) t.stderr_writer.file = .stderr();

Unused operations are also not optimized out, but that's a different problem.

For the hello world from the langref: ```zig const std = @import("std"); pub fn main(init: std.process.Init) !void { try std.Io.File.stdout().writeStreamingAll(init.io, "Hello, World!\n"); } ``` the only things currently causing unused std.Io functions to not be optimized out are: ```diff --- a/lib/std/Io/File.zig +++ b/lib/std/Io/File.zig @@ -610,7 +610,7 @@ pub fn writerStreaming(file: File, io: Io, buffer: []u8) Writer { /// This is a low-level API that calls the `Io` interface function directly. /// For a higher level API, see `writerStreaming`. -pub fn writeStreaming(file: File, io: Io, header: []const u8, data: []const []const u8, splat: usize) Writer.Error!usize { +pub inline fn writeStreaming(file: File, io: Io, header: []const u8, data: []const []const u8, splat: usize) Writer.Error!usize { return (try io.operate(.{ .file_write_streaming = .{ .file = file, .header = header, diff --git a/lib/std/Io/Threaded.zig b/lib/std/Io/Threaded.zig index 0bec8a068f..460fa6470e 100644 --- a/lib/std/Io/Threaded.zig +++ b/lib/std/Io/Threaded.zig @@ -13809,6 +13809,7 @@ fn tryLockStderr(userdata: ?*anyopaque, terminal_mode: ?Io.Terminal.Mode) Io.Can } fn initLockedStderr(t: *Threaded, terminal_mode: ?Io.Terminal.Mode) Io.Cancelable!Io.LockedStderr { + if (true) @trap(); if (!t.stderr_writer_initialized) { const io_t = io(t); if (is_windows) t.stderr_writer.file = .stderr(); ``` Unused operations are also not optimized out, but that's a different problem.
Contributor
Copy link

@jacobly This means that when writeStreaming is inlined, the compiler sees the concrete operate call, can statically resolve the VTable dispatch and eliminate everything that is not the concrete file_write_streaming path?

@jacobly This means that when writeStreaming is inlined, the compiler sees the concrete operate call, can statically resolve the VTable dispatch and eliminate everything that is not the concrete file_write_streaming path?
Sign in to join this conversation.
No Branch/Tag specified
master
elfv2
spork8
restricted
0.16.x
panic-rewrite
parking-futex-lockfree
windows-Io-cleanup
Io-watch
ParseCommandLineOptions
windows-async-files
poll-ring
debug-file-leaks-differently
debug-file-leaks
ProcessPrng
elfv2-dyn
jobserver
threadtheft
io-threaded-no-queue
0.15.x
Io.net
comptime-allocator
restricted-function-pointers
cli
wasm-linker-writer
wrangle-writer-buffering
sha1-stream
async-await-demo
fixes
0.14.x
ast-node-methods
macos-debug-info
make-vs-configure
fuzz-macos
sans-aro
ArrayList-reserve
incr-bug
llvm-ir-nosanitize-metadata
ci-tarballs
ci-scripts
threadpool
0.12.x
new-pkg-hash
json-diagnostics
more-doctests
rework-comptime-mutation
0.11.x
ci-perf-comment
stage2-async
0.10.x
autofix
0.9.x
aro
hcs
0.8.x
0.7.x
0.16.0
0.15.2
0.15.1
0.15.0
0.14.1
0.14.0
0.12.1
0.13.0
0.12.0
0.11.0
0.10.1
0.10.0
0.9.1
0.9.0
0.8.1
0.8.0
0.7.1
0.7.0
0.6.0
0.5.0
0.4.0
0.3.0
0.2.0
0.1.1
0.1.0
Labels
Clear labels
abi/f32
abi/ilp32
abi/sf
accepted
This proposal is planned.
arch/21k
arch/6502
arch/aarch64
arch/alpha
arch/amdgcn
arch/arc
arch/arc32
arch/arc64
arch/arm
arch/avr
arch/bfin
arch/bpf
arch/colossus
arch/cris
arch/csky
arch/dlx
arch/epiphany
arch/fr30
arch/frv
arch/hexagon
arch/hppa
arch/hppa64
arch/ia64
arch/kalimba
arch/kvx
arch/lanai
arch/lm32
arch/loongarch32
arch/loongarch64
arch/m32r
arch/m68k
arch/m88k
arch/mcore
arch/microblaze
arch/mips
arch/mips64
arch/mmix
arch/moxie
arch/mrisc32
arch/msp430
arch/nds32
arch/ns32k
arch/nvptx
arch/or1k
arch/powerpc
arch/powerpc64
arch/propeller
arch/riscv32
arch/riscv64
arch/rl78
arch/rx
arch/s390x
arch/sh
arch/sparc
arch/sparc64
arch/spirv
arch/spu
arch/tricore
arch/v850
arch/vax
arch/vc4
arch/ve
arch/wasm
arch/x86
arch/x86_64
arch/xcore
arch/xtensa
autodoc
The web application for interactive documentation and generation of its assets.
backend/c
The C backend outputs C source code.
backend/llvm
The LLVM backend outputs an LLVM bitcode module.
backend/self-hosted
The self-hosted backends produce machine code directly.
binutils
Zig's included binary utilities: zig ar, zig dlltool, zig lib, zig ranlib, zig objcopy, and zig rc.
breaking
Implementing this issue could cause existing code to no longer compile or have different behavior.
build system
The Zig build system - zig build, std.Build, the build runner, and package management.
debug info
An issue related to debug information (e.g. DWARF) produced by the Zig compiler.
docs
An issue with documentation, e.g. the language reference or standard library doc comments.
error message
This issue points out an error message that is unhelpful and should be improved.
frontend
Tokenization, parsing, AstGen, ZonGen, Sema, Legalize, and Liveness.
fuzzing
An issue related to Zig's integrated fuzz testing.
incremental
Reuse of internal compiler state for faster compilation.
lib/c
This issue relates to Zig's libc implementation and/or vendored libcs.
lib/compiler-rt
This issue relates to Zig's compiler-rt library.
lib/cxx
This issue relates to Zig's vendored libc++ and/or libc++abi.
lib/std
This issue relates to Zig's standard library.
lib/tsan
This issue relates to Zig's vendored libtsan.
lib/ubsan-rt
This issue relates to Zig's ubsan-rt library.
lib/unwind
This issue relates to Zig's vendored libunwind.
linking
Zig's integrated object file and incremental linker.
miscompilation
The compiler reports success but produces semantically incorrect code.
os/android
os/contiki
os/dragonfly
os/driverkit
os/emscripten
os/freebsd
os/fuchsia
os/haiku
os/hermit
os/hurd
os/illumos
os/ios
os/linux
os/maccatalyst
os/macos
os/managarm
os/netbsd
os/ohos
os/openbsd
os/plan9
os/redox
os/rtems
os/serenity
os/tvos
os/uefi
os/visionos
os/wasi
os/watchos
os/windows
proposal
This issue suggests language modifications. If it also has the "accepted" label then it is planned.
release notes
This issue or pull request should be mentioned in the release notes.
testing
This issue is related to testing the compiler, standard library, or other parts of Zig.
zig cc
Zig as a drop-in C-family compiler.
zig fmt
The Zig source code formatter.
zig reduce
The Zig source code reduction tool.
bounty
https://ziglang.org/news/announcing-donor-bounties
bug
Observed behavior contradicts documented or intended behavior.
contributor-friendly
This issue is limited in scope and/or knowledge of project internals.
downstream
An issue with a third-party project that uses this project.
enhancement
Solving this issue will likely involve adding new logic or components to the codebase.
infra
An issue related to project infrastructure, e.g. continuous integration.
optimization
A task to improve performance and/or resource usage.
question
No questions on the issue tracker; use a community space instead.
regression
Something that used to work in a previous version stopped working
upstream
An issue with a third-party project that this project uses.
use case
Describes a real use case that is difficult or impossible, but does not propose a solution.
No labels
abi/f32
abi/ilp32
abi/sf
accepted
arch/21k
arch/6502
arch/aarch64
arch/alpha
arch/amdgcn
arch/arc
arch/arc32
arch/arc64
arch/arm
arch/avr
arch/bfin
arch/bpf
arch/colossus
arch/cris
arch/csky
arch/dlx
arch/epiphany
arch/fr30
arch/frv
arch/hexagon
arch/hppa
arch/hppa64
arch/ia64
arch/kalimba
arch/kvx
arch/lanai
arch/lm32
arch/loongarch32
arch/loongarch64
arch/m32r
arch/m68k
arch/m88k
arch/mcore
arch/microblaze
arch/mips
arch/mips64
arch/mmix
arch/moxie
arch/mrisc32
arch/msp430
arch/nds32
arch/ns32k
arch/nvptx
arch/or1k
arch/powerpc
arch/powerpc64
arch/propeller
arch/riscv32
arch/riscv64
arch/rl78
arch/rx
arch/s390x
arch/sh
arch/sparc
arch/sparc64
arch/spirv
arch/spu
arch/tricore
arch/v850
arch/vax
arch/vc4
arch/ve
arch/wasm
arch/x86
arch/x86_64
arch/xcore
arch/xtensa
autodoc
backend/c
backend/llvm
backend/self-hosted
binutils
breaking
build system
debug info
docs
error message
frontend
fuzzing
incremental
lib/c
lib/compiler-rt
lib/cxx
lib/std
lib/tsan
lib/ubsan-rt
lib/unwind
linking
miscompilation
os/android
os/contiki
os/dragonfly
os/driverkit
os/emscripten
os/freebsd
os/fuchsia
os/haiku
os/hermit
os/hurd
os/illumos
os/ios
os/linux
os/maccatalyst
os/macos
os/managarm
os/netbsd
os/ohos
os/openbsd
os/plan9
os/redox
os/rtems
os/serenity
os/tvos
os/uefi
os/visionos
os/wasi
os/watchos
os/windows
proposal
release notes
testing
zig cc
zig fmt
zig reduce
bounty
bug
contributor-friendly
downstream
enhancement
infra
optimization
question
regression
upstream
use case
Milestone
Clear milestone
No items
No milestone
Projects
Clear projects
No items
No project
Assignees
Clear assignees
No assignees
7 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
ziglang/zig#31421
Reference in a new issue
ziglang/zig
No description provided.
Delete branch "%!s()"

Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?