mirror of
https://github.com/python/cpython.git
synced 2025-11-20 10:57:44 +00:00
Increase stack reserve size for Windows debug builds to avoid test crashes (GH-102764)
This commit is contained in:
parent
3f9285a8c5
commit
f33b33eb31
2 changed files with 3 additions and 2 deletions
|
|
@ -95,7 +95,7 @@
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<StackReserveSize Condition="$(Configuration) != 'Debug'">2000000</StackReserveSize>
|
<StackReserveSize Condition="$(Configuration) != 'Debug'">2000000</StackReserveSize>
|
||||||
<StackReserveSize Condition="$(Configuration) == 'Debug'">4000000</StackReserveSize>
|
<StackReserveSize Condition="$(Configuration) == 'Debug'">8000000</StackReserveSize>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,8 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup>
|
<ItemDefinitionGroup>
|
||||||
<Link>
|
<Link>
|
||||||
<StackReserveSize>2000000</StackReserveSize>
|
<StackReserveSize Condition="$(Configuration) != 'Debug'">2000000</StackReserveSize>
|
||||||
|
<StackReserveSize Condition="$(Configuration) == 'Debug'">8000000</StackReserveSize>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue