aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2020-05-05 18:45:35 +0100
committerGitHub <noreply@github.com>2020-05-05 18:45:35 +0100
commitac4bf424119d1300f57929120968e216a85d3a25 (patch)
tree86940ec570386c442d1864ce1b29bcaeacf92a8a /PCbuild
parentbpo-40521: Disable Unicode caches in isolated subinterpreters (GH-19933) (diff)
downloadcpython-ac4bf424119d1300f57929120968e216a85d3a25.tar.gz
cpython-ac4bf424119d1300f57929120968e216a85d3a25.tar.bz2
cpython-ac4bf424119d1300f57929120968e216a85d3a25.zip
bpo-40458: Increase reserved stack space to prevent overflow crash on Windows (GH-19845)
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/python_uwp.vcxproj1
-rw-r--r--PCbuild/pythonw_uwp.vcxproj1
2 files changed, 2 insertions, 0 deletions
diff --git a/PCbuild/python_uwp.vcxproj b/PCbuild/python_uwp.vcxproj
index 5ff120a0da3..fb27e9e7122 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 828d0d1ccac..e21e46a1b72 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'">