diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-08-30 13:44:13 +0300 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2020-08-30 13:44:13 +0300 |
commit | f880168f4c71aa0cf4d6d4d1261dbe374a5f58c3 (patch) | |
tree | 05d89f7a4b69bc73cda33e0e8a5124151b1595cb | |
parent | make stack 3MB on windows (diff) | |
download | pypy-f880168f4c71aa0cf4d6d4d1261dbe374a5f58c3.tar.gz pypy-f880168f4c71aa0cf4d6d4d1261dbe374a5f58c3.tar.bz2 pypy-f880168f4c71aa0cf4d6d4d1261dbe374a5f58c3.zip |
typo
-rw-r--r-- | rpython/translator/platform/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpython/translator/platform/windows.py b/rpython/translator/platform/windows.py index 6ba68d4a19..0144889de5 100644 --- a/rpython/translator/platform/windows.py +++ b/rpython/translator/platform/windows.py @@ -176,7 +176,7 @@ class MsvcPlatform(Platform): cflags = ('/MD', '/O2', '/FS', '/Zi') # allow >2GB address space, set stack to 3MB (1MB is too small) - link_flags = ('/debug','/LARGEADDRESSAWARE', '/STACK:3145728) + link_flags = ('/debug','/LARGEADDRESSAWARE', '/STACK:3145728') standalone_only = () shared_only = () environ = None |