We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dc4062 commit 06a5633Copy full SHA for 06a5633
src/run/runner/wall_time/perf/mod.rs
@@ -94,7 +94,9 @@ impl PerfRunner {
94
|| config.command.contains("uv")
95
|| config.command.contains("python")
96
{
97
- (UnwindingMode::Dwarf, Some(65528))
+ // Max supported stack size is 64KiB, but this will increase the file size by a lot. In
98
+ // order to allow uploads and maintain accuracy, we limit this to 8KiB.
99
+ (UnwindingMode::Dwarf, Some(8 * 1024))
100
} else {
101
// Default to dwarf unwinding since it works well with most binaries.
102
debug!("No call graph mode detected, defaulting to dwarf");
0 commit comments