Skip to content

Commit

Permalink
Pass along the gcinfo flag
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaZupan committed Dec 1, 2024
1 parent 7e42fc1 commit db25626
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Runner/Helpers/JitDiffUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,15 @@ private static async Task RunJitDiffAsync(JobBase job, string coreRootFolder, st
bool useTier0 = job.TryGetFlag("tier0");
bool verbose = job.TryGetFlag("verbose");
bool debugInfo = job.TryGetFlag("debuginfo");
bool gcInfo = job.TryGetFlag("gcinfo");

await job.RunProcessAsync("jitutils/bin/jit-diff",
$"diff " +
(debugInfo ? "--debuginfo " : "") +
(verbose ? "--verbose " : "") +
(useCctors ? "--cctors " : "") +
(useTier0 ? "--tier0 " : "") +
(gcInfo ? "--gcinfo " : "") +
$"--output {outputFolder} " +
$"{frameworksOrAssembly} --pmi " +
$"--core_root {coreRootFolder} " +
Expand Down

0 comments on commit db25626

Please sign in to comment.