Fix debug format for msvc optimized builds.
This commit is contained in:
parent
f1a7a0cee3
commit
5f44748ddd
|
@ -54,7 +54,7 @@ gnulike_buildtype_args = {'plain' : [],
|
|||
|
||||
msvc_buildtype_args = {'plain' : [],
|
||||
'debug' : ["/MDd", "/ZI", "/Ob0", "/Od", "/RTC1"],
|
||||
'debugoptimized' : ["/MD", "/ZI", "/O2", "/Ob1", "/D"],
|
||||
'debugoptimized' : ["/MD", "/Zi", "/O2", "/Ob1", "/D"],
|
||||
'release' : ["/MD", "/O2", "/Ob2"]}
|
||||
|
||||
gnulike_buildtype_linker_args = {}
|
||||
|
|
Loading…
Reference in New Issue