aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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