wscript: fixed MSVC optimization flag in debug mode

This commit is contained in:
SNMetamorph 2021-02-20 15:03:42 +04:00 committed by Alibek Omarov
parent 5884cf88d3
commit 932fc8e3c7

View File

@ -73,7 +73,7 @@ CFLAGS = {
'default': ['-O3']
},
'debug': {
'msvc': ['/O1'],
'msvc': ['/Od'],
'gcc': ['-Og'],
'owcc': ['-O0', '-fno-omit-frame-pointer', '-funwind-tables', '-fno-omit-leaf-frame-pointer'],
'default': ['-O1']