aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-08-30 13:44:13 +0300
committerMatti Picus <matti.picus@gmail.com>2020-08-30 13:44:13 +0300
commitf880168f4c71aa0cf4d6d4d1261dbe374a5f58c3 (patch)
tree05d89f7a4b69bc73cda33e0e8a5124151b1595cb
parentmake stack 3MB on windows (diff)
downloadpypy-f880168f4c71aa0cf4d6d4d1261dbe374a5f58c3.tar.gz
pypy-f880168f4c71aa0cf4d6d4d1261dbe374a5f58c3.tar.bz2
pypy-f880168f4c71aa0cf4d6d4d1261dbe374a5f58c3.zip
typo
-rw-r--r--rpython/translator/platform/windows.py2
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