mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
bpo-40458: Increase reserved stack space to prevent overflow crash on Windows (GH-19845)
This commit is contained in:
parent
607b1027fe
commit
ac4bf42411
3 changed files with 3 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
Increase reserved stack space to prevent overflow crash on Windows.
|
||||
|
|
@ -95,6 +95,7 @@
|
|||
<Link>
|
||||
<AdditionalDependencies>windowsapp.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<StackReserveSize>2000000</StackReserveSize>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="$(Configuration) != 'Debug'">
|
||||
|
|
|
|||
|
|
@ -95,6 +95,7 @@
|
|||
<Link>
|
||||
<AdditionalDependencies>windowsapp.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<StackReserveSize>2000000</StackReserveSize>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="$(Configuration) != 'Debug'">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue