aboutsummaryrefslogtreecommitdiff
path: root/compilers.py
diff options
context:
space:
mode:
Diffstat (limited to 'compilers.py')
-rw-r--r--compilers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/compilers.py b/compilers.py
index df8fc2f..f817161 100644
--- a/compilers.py
+++ b/compilers.py
@@ -52,8 +52,8 @@ gnulike_buildtype_args = {'plain' : [],
'release' : ['-O3']}
msvc_buildtype_args = {'plain' : [],
- 'debug' : ["/MDd", "/Zi", "/Ob0", "/Od", "/RTC1"],
- 'debugoptimized' : ["/MD", "/Zi", "/O2", "/Ob1", "/D"],
+ 'debug' : ["/MDd", "/ZI", "/Ob0", "/Od", "/RTC1"],
+ 'debugoptimized' : ["/MD", "/ZI", "/O2", "/Ob1", "/D"],
'release' : ["/MD", "/O2", "/Ob2"]}
gnulike_buildtype_linker_args = {}