mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
Merge pull request #8684 from roc-lang/bhansconnect/push-tsrtrtqmlozt
default to tracy_callstack off
This commit is contained in:
commit
730193e6ed
1 changed files with 1 additions and 1 deletions
|
|
@ -1286,7 +1286,7 @@ pub fn build(b: *std.Build) void {
|
|||
|
||||
// tracy profiler configuration
|
||||
const flag_enable_tracy = b.option([]const u8, "tracy", "Enable Tracy integration. Supply path to Tracy source");
|
||||
const flag_tracy_callstack = b.option(bool, "tracy-callstack", "Include callstack information with Tracy data. Does nothing if -Dtracy is not provided") orelse (flag_enable_tracy != null);
|
||||
const flag_tracy_callstack = b.option(bool, "tracy-callstack", "Include callstack information with Tracy data. Does nothing if -Dtracy is not provided") orelse false;
|
||||
const flag_tracy_allocation = b.option(bool, "tracy-allocation", "Include allocation information with Tracy data. Does nothing if -Dtracy is not provided") orelse (flag_enable_tracy != null);
|
||||
const flag_tracy_callstack_depth: u32 = b.option(u32, "tracy-callstack-depth", "Declare callstack depth for Tracy data. Does nothing if -Dtracy_callstack is not provided") orelse 10;
|
||||
if (flag_tracy_callstack) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue