bpo-40458: Increase reserved stack space to prevent overflow crash on Windows (GH-19845)
This commit is contained in:
parent
607b1027fe
commit
ac4bf42411
|
@ -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