Do error tracing if printing stack trace is enabled

This commit is contained in:
David Gonzalez Martin 2024-03-13 13:21:40 -06:00
parent 1a1e0e6da6
commit e88741ab95

View File

@ -82,7 +82,7 @@ pub fn build(b: *std.Build) !void {
compiler.formatted_panics = print_stack_trace;
compiler.root_module.unwind_tables = print_stack_trace;
compiler.root_module.omit_frame_pointer = false;
compiler.root_module.error_tracing = false;
compiler.root_module.error_tracing = print_stack_trace;
compiler.want_lto = false;
compiler.linkLibC();