diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-05-05 18:03:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 18:03:21 (GMT) |
commit | a6a116c1b964b3d1fdff0f533861ed2a2227de1f (patch) | |
tree | 534ed615f239f36504866f3f1dd251a0048a3095 /PCbuild | |
parent | efc782d29e229924076ffb6645a72f26242fb3ef (diff) | |
download | cpython-a6a116c1b964b3d1fdff0f533861ed2a2227de1f.zip cpython-a6a116c1b964b3d1fdff0f533861ed2a2227de1f.tar.gz cpython-a6a116c1b964b3d1fdff0f533861ed2a2227de1f.tar.bz2 |
bpo-40458: Increase reserved stack space to prevent overflow crash on Windows (GH-19845)
(cherry picked from commit ac4bf424119d1300f57929120968e216a85d3a25)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/python_uwp.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythonw_uwp.vcxproj | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/PCbuild/python_uwp.vcxproj b/PCbuild/python_uwp.vcxproj index 5ff120a..fb27e9e 100644 --- a/PCbuild/python_uwp.vcxproj +++ b/PCbuild/python_uwp.vcxproj @@ -95,6 +95,7 @@ <Link> <AdditionalDependencies>windowsapp.lib;%(AdditionalDependencies)</AdditionalDependencies> <SubSystem>Console</SubSystem> + <StackReserveSize>2000000</StackReserveSize> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="$(Configuration) != 'Debug'"> diff --git a/PCbuild/pythonw_uwp.vcxproj b/PCbuild/pythonw_uwp.vcxproj index 828d0d1..e21e46a 100644 --- a/PCbuild/pythonw_uwp.vcxproj +++ b/PCbuild/pythonw_uwp.vcxproj @@ -95,6 +95,7 @@ <Link> <AdditionalDependencies>windowsapp.lib;%(AdditionalDependencies)</AdditionalDependencies> <SubSystem>Windows</SubSystem> + <StackReserveSize>2000000</StackReserveSize> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="$(Configuration) != 'Debug'"> |