gh-113655: Increase stack reserve size on Windows for when running PGO (GH-115770)

This commit is contained in:
Steve Dower 2024-02-21 19:46:46 +00:00 committed by GitHub
parent dae7341da2
commit 8e70dc8739
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -96,6 +96,7 @@
<SubSystem>Console</SubSystem>
<StackReserveSize Condition="$(Configuration) != 'Debug'">2000000</StackReserveSize>
<StackReserveSize Condition="$(Configuration) == 'Debug'">8000000</StackReserveSize>
<StackReserveSize Condition="$(Configuration) == 'PGInstrument'">8000000</StackReserveSize>
</Link>
</ItemDefinitionGroup>
<ItemGroup>

View file

@ -91,6 +91,7 @@
<Link>
<StackReserveSize Condition="$(Configuration) != 'Debug'">2000000</StackReserveSize>
<StackReserveSize Condition="$(Configuration) == 'Debug'">8000000</StackReserveSize>
<StackReserveSize Condition="$(Configuration) == 'PGInstrument'">8000000</StackReserveSize>
</Link>
</ItemDefinitionGroup>
<ItemGroup>