mirror of https://github.com/python/cpython
Increase stack reserve size for Windows debug builds to avoid test crashes (GH-102764)
This commit is contained in:
parent
3f9285a8c5
commit
f33b33eb31
|
@ -95,7 +95,7 @@
|
|||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<StackReserveSize Condition="$(Configuration) != 'Debug'">2000000</StackReserveSize>
|
||||
<StackReserveSize Condition="$(Configuration) == 'Debug'">4000000</StackReserveSize>
|
||||
<StackReserveSize Condition="$(Configuration) == 'Debug'">8000000</StackReserveSize>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
|
|
|
@ -89,7 +89,8 @@
|
|||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<Link>
|
||||
<StackReserveSize>2000000</StackReserveSize>
|
||||
<StackReserveSize Condition="$(Configuration) != 'Debug'">2000000</StackReserveSize>
|
||||
<StackReserveSize Condition="$(Configuration) == 'Debug'">8000000</StackReserveSize>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
|
|
Loading…
Reference in New Issue