From caf48a41ee5c3861c786270d64bac950f2513012 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Sat, 29 Aug 2026 09:20:11 -0500 Subject: [PATCH] main: fix inverted allow_stack_tracing condition The Zig 0.16.0 update dropped the negation from the std default (!strip_debug_info), disabling stack traces in every unstripped build. AI disclosure: Claude Fable was used to diagnose the problem and find the fix. Commit message was written by me. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01QfzQME46DQXwMWa43bQaa3 --- src/main_ghostty.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main_ghostty.zig b/src/main_ghostty.zig index 86e779899..f4fa74133 100644 --- a/src/main_ghostty.zig +++ b/src/main_ghostty.zig @@ -228,7 +228,7 @@ pub const std_options: std.Options = .{ .allow_stack_tracing = if (builtin.target.os.tag.isDarwin() and builtin.target.os.tag != .macos) false else - builtin.strip_debug_info, + !builtin.strip_debug_info, }; test {