aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-06-09 15:33:04 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-06-09 20:00:59 -0700
commit2bf532fc23ec014201bb1e69cb3b44e37e23f14c (patch)
treed87c47ac302f67d82d4d9692cf8181925152493f /ci
parentbc36da0cb80eebffbbd86a430b435492e00f8378 (diff)
downloadzig-2bf532fc23ec014201bb1e69cb3b44e37e23f14c.tar.gz
zig-2bf532fc23ec014201bb1e69cb3b44e37e23f14c.zip
stage2: use std.debug.Trace only when explicitly enabled
Because it bumps up the stack space requirements, which is making a test case fail on aarch64 drone CI.
Diffstat (limited to 'ci')
-rw-r--r--ci/azure/build.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/azure/build.zig b/ci/azure/build.zig
index 4596233bd8..12197fdf07 100644
--- a/ci/azure/build.zig
+++ b/ci/azure/build.zig
@@ -99,6 +99,7 @@ pub fn build(b: *Builder) !void {
const force_gpa = b.option(bool, "force-gpa", "Force the compiler to use GeneralPurposeAllocator") orelse false;
const link_libc = b.option(bool, "force-link-libc", "Force self-hosted compiler to link libc") orelse enable_llvm;
const strip = b.option(bool, "strip", "Omit debug information") orelse false;
+ const value_tracing = b.option(bool, "value-tracing", "Enable extra state tracking to help troubleshoot bugs in the compiler (using the std.debug.Trace API)") orelse false;
const mem_leak_frames: u32 = b.option(u32, "mem-leak-frames", "How many stack frames to print when a memory leak occurs. Tests get 2x this amount.") orelse blk: {
if (strip) break :blk @as(u32, 0);
@@ -303,6 +304,7 @@ pub fn build(b: *Builder) !void {
exe_options.addOption(bool, "enable_tracy", tracy != null);
exe_options.addOption(bool, "enable_tracy_callstack", tracy_callstack);
exe_options.addOption(bool, "enable_tracy_allocation", tracy_allocation);
+ exe_options.addOption(bool, "value_tracing", value_tracing);
exe_options.addOption(bool, "is_stage1", is_stage1);
exe_options.addOption(bool, "omit_stage2", omit_stage2);
if (tracy) |tracy_path| {