diff options
author | Trent Nelson <trent.nelson@snakebite.org> | 2008-03-18 07:02:12 (GMT) |
---|---|---|
committer | Trent Nelson <trent.nelson@snakebite.org> | 2008-03-18 07:02:12 (GMT) |
commit | 3ce76756d31916f80d6a03b0dc257ec7036dcb5c (patch) | |
tree | 36ffe4114d18859b9930577d12dbfc0628b8f5b7 /PCbuild | |
parent | d1befd7c50157d39d73f78c6f3ed3440e4369723 (diff) | |
download | cpython-3ce76756d31916f80d6a03b0dc257ec7036dcb5c.zip cpython-3ce76756d31916f80d6a03b0dc257ec7036dcb5c.tar.gz cpython-3ce76756d31916f80d6a03b0dc257ec7036dcb5c.tar.bz2 |
Issue 2286: bump up the stack size of the 64-bit debug python_d.exe to 2100000. The default value of 200000 causes a stack overflow at 1965 iterations of r_object() in marshal.c, 35 iterations before the 2000 limit enforced by MAX_MARSHAL_STACK_DEPTH.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/python.vcproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/python.vcproj b/PCbuild/python.vcproj index 17b29a2..f5f4605 100644 --- a/PCbuild/python.vcproj +++ b/PCbuild/python.vcproj @@ -290,7 +290,7 @@ AdditionalDependencies="odbccp32.lib" OutputFile="$(OutDir)\python_d.exe" SubSystem="1" - StackReserveSize="2000000" + StackReserveSize="2100000" BaseAddress="0x1d000000" /> <Tool |