authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-02-09 17:17:38-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-02-11 00:27:06+01:00
log68403267117bf5cf73e0f747887f2834336ae4a2
tree269fe534f6f3839922bb1224fc2b8f8e0fc340c8
parent7369008d8ca94fe48d9408d03851a4a17f7e1b73

compiler: override debug_io in release + evented mode

to avoid a dependency on std.Io.Threaded in such case

2 files changed, 19 insertions(+), 6 deletions(-)

lib/std/debug/ElfFile.zig+5-1
...@@ -86,7 +86,11 @@ pub const DebugInfoSearchPaths = struct {...@@ -86,7 +86,11 @@ pub const DebugInfoSearchPaths = struct {
86 },86 },
87 .exe_dir = std.fs.path.dirname(exe_path) orelse ".",87 .exe_dir = std.fs.path.dirname(exe_path) orelse ".",
88 };88 };
89 @compileError("std.Options.elf_debug_info_search_paths must be provided");89 return .{
90 .debuginfod_client = null,
91 .global_debug = &.{"/usr/lib/debug"},
92 .exe_dir = std.fs.path.dirname(exe_path) orelse ".",
93 };
90 }94 }
91};95};
9296
src/main.zig+14-5
...@@ -51,6 +51,17 @@ pub const std_options: std.Options = .{...@@ -51,6 +51,17 @@ pub const std_options: std.Options = .{
51 },51 },
52};52};
53pub const std_options_cwd = if (native_os == .wasi) wasi_cwd else null;53pub const std_options_cwd = if (native_os == .wasi) wasi_cwd else null;
54pub const std_options_debug_threaded_io: ?*Io.Threaded = switch (build_options.io_mode) {
55 .threaded => &io_impl,
56 .evented => switch (builtin.mode) {
57 .Debug => Io.Threaded.global_single_threaded,
58 .ReleaseFast, .ReleaseSmall, .ReleaseSafe => null,
59 },
60};
61pub const std_options_debug_io: Io = switch (build_options.io_mode) {
62 .threaded => io_impl.ioBasic(),
63 .evented => io_impl.io(),
64};
5465
55pub const debug = struct {66pub const debug = struct {
56 pub fn printCrashContext(terminal: Io.Terminal) void {67 pub fn printCrashContext(terminal: Io.Terminal) void {
...@@ -189,7 +200,6 @@ pub fn main(init: std.process.Init.Minimal) anyerror!void {...@@ -189,7 +200,6 @@ pub fn main(init: std.process.Init.Minimal) anyerror!void {
189 var root_allocator: RootAllocator = .init;200 var root_allocator: RootAllocator = .init;
190 defer _ = root_allocator.deinit();201 defer _ = root_allocator.deinit();
191 const root_gpa = root_allocator.allocator();202 const root_gpa = root_allocator.allocator();
192 var io_impl: IoImpl = undefined;
193 switch (build_options.io_mode) {203 switch (build_options.io_mode) {
194 .threaded => io_impl = .init(root_gpa, .{204 .threaded => io_impl = .init(root_gpa, .{
195 .stack_size = thread_stack_size,205 .stack_size = thread_stack_size,
...@@ -205,7 +215,6 @@ pub fn main(init: std.process.Init.Minimal) anyerror!void {...@@ -205,7 +215,6 @@ pub fn main(init: std.process.Init.Minimal) anyerror!void {
205 }),215 }),
206 }216 }
207 defer io_impl.deinit();217 defer io_impl.deinit();
208 io_impl_ptr = &io_impl;
209 const io = io_impl.io();218 const io = io_impl.io();
210 const gpa = switch (build_options.io_mode) {219 const gpa = switch (build_options.io_mode) {
211 .threaded => root_gpa,220 .threaded => root_gpa,
...@@ -7815,7 +7824,7 @@ const IoImpl = switch (build_options.io_mode) {...@@ -7815,7 +7824,7 @@ const IoImpl = switch (build_options.io_mode) {
7815 .threaded => Io.Threaded,7824 .threaded => Io.Threaded,
7816 .evented => Io.Evented,7825 .evented => Io.Evented,
7817};7826};
7818var io_impl_ptr: *IoImpl = undefined;7827var io_impl: IoImpl = undefined;
7819fn setThreadLimit(arena: std.mem.Allocator, n: usize) Allocator.Error!void {7828fn setThreadLimit(arena: std.mem.Allocator, n: usize) Allocator.Error!void {
7820 switch (build_options.io_mode) {7829 switch (build_options.io_mode) {
7821 .threaded => {7830 .threaded => {
...@@ -7824,8 +7833,8 @@ fn setThreadLimit(arena: std.mem.Allocator, n: usize) Allocator.Error!void {...@@ -7824,8 +7833,8 @@ fn setThreadLimit(arena: std.mem.Allocator, n: usize) Allocator.Error!void {
7824 // linker can run concurrently, so we need to set both the async *and* the7833 // linker can run concurrently, so we need to set both the async *and* the
7825 // concurrency limit.7834 // concurrency limit.
7826 const limit: Io.Limit = .limited(n - 1);7835 const limit: Io.Limit = .limited(n - 1);
7827 io_impl_ptr.setAsyncLimit(limit);7836 io_impl.setAsyncLimit(limit);
7828 io_impl_ptr.concurrent_limit = limit;7837 io_impl.concurrent_limit = limit;
7829 },7838 },
7830 .evented => {},7839 .evented => {},
7831 }7840 }