summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2023-03-17 01:07:07 (GMT)
committerGitHub <noreply@github.com>2023-03-17 01:07:07 (GMT)
commitf33b33eb31c11a32b2955eb1f002f02267bd7d61 (patch)
treeaf438efca6b927ee2c836fb94a41106db4477b05
parent3f9285a8c52bf776c364f0cf4aecdd8f514ac4e1 (diff)
downloadcpython-f33b33eb31c11a32b2955eb1f002f02267bd7d61.zip
cpython-f33b33eb31c11a32b2955eb1f002f02267bd7d61.tar.gz
cpython-f33b33eb31c11a32b2955eb1f002f02267bd7d61.tar.bz2
Increase stack reserve size for Windows debug builds to avoid test crashes (GH-102764)
-rw-r--r--PCbuild/python.vcxproj2
-rw-r--r--PCbuild/pythonw.vcxproj3
2 files changed, 3 insertions, 2 deletions
diff --git a/PCbuild/python.vcxproj b/PCbuild/python.vcxproj
index d07db3a..f464045 100644
--- a/PCbuild/python.vcxproj
+++ b/PCbuild/python.vcxproj
@@ -95,7 +95,7 @@
<Link>
<SubSystem>Console</SubSystem>
<StackReserveSize Condition="$(Configuration) != 'Debug'">2000000</StackReserveSize>
- <StackReserveSize Condition="$(Configuration) == 'Debug'">4000000</StackReserveSize>
+ <StackReserveSize Condition="$(Configuration) == 'Debug'">8000000</StackReserveSize>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
diff --git a/PCbuild/pythonw.vcxproj b/PCbuild/pythonw.vcxproj
index e7216de..e23635e 100644
--- a/PCbuild/pythonw.vcxproj
+++ b/PCbuild/pythonw.vcxproj
@@ -89,7 +89,8 @@
</PropertyGroup>
<ItemDefinitionGroup>
<Link>
- <StackReserveSize>2000000</StackReserveSize>
+ <StackReserveSize Condition="$(Configuration) != 'Debug'">2000000</StackReserveSize>
+ <StackReserveSize Condition="$(Configuration) == 'Debug'">8000000</StackReserveSize>
</Link>
</ItemDefinitionGroup>
<ItemGroup>