bpo-40458: Increase reserved stack space to prevent overflow crash on Windows (GH-19845)
(cherry picked from commit ac4bf42411
)
Co-authored-by: Steve Dower <steve.dower@python.org>
This commit is contained in:
parent
efc782d29e
commit
a6a116c1b9
|
@ -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…
Reference in New Issue