diff options
author | Steve Dower <steve.dower@python.org> | 2023-03-17 01:07:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-17 01:07:07 (GMT) |
commit | f33b33eb31c11a32b2955eb1f002f02267bd7d61 (patch) | |
tree | af438efca6b927ee2c836fb94a41106db4477b05 /PCbuild/pythonw.vcxproj | |
parent | 3f9285a8c52bf776c364f0cf4aecdd8f514ac4e1 (diff) | |
download | cpython-f33b33eb31c11a32b2955eb1f002f02267bd7d61.zip cpython-f33b33eb31c11a32b2955eb1f002f02267bd7d61.tar.gz cpython-f33b33eb31c11a32b2955eb1f002f02267bd7d61.tar.bz2 |
Increase stack reserve size for Windows debug builds to avoid test crashes (GH-102764)
Diffstat (limited to 'PCbuild/pythonw.vcxproj')
-rw-r--r-- | PCbuild/pythonw.vcxproj | 3 |
1 files changed, 2 insertions, 1 deletions
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> |