* Disable box for pgo optimized msvc link actions

[CL 28264489 by henrik karlsson in ue5-main branch]
This commit is contained in:
henrik karlsson
2023-09-27 01:41:09 -04:00
parent 1ebfbfadd7
commit 4e5cfbd978

View File

@@ -2601,6 +2601,11 @@ namespace UnrealBuildTool
LinkAction.bCanExecuteRemotely = true;
}
if (LinkEnvironment.bPGOOptimize)
{
LinkAction.bCanExecuteInBox = false; // Disabled for now. Should revisit to see why it is not working
}
// Create link repro if requested, this argument is intentionally not added to the response file
if (Target.WindowsPlatform.LinkReproDir != null)
{