waifulib: set debug builds to be built with -O0, gcc -Od is broken

This commit is contained in:
Alibek Omarov 2021-03-11 20:17:39 +03:00
parent 331a2046c8
commit accacd54f5
1 changed files with 1 additions and 2 deletions

View File

@ -74,9 +74,8 @@ CFLAGS = {
}, },
'debug': { 'debug': {
'msvc': ['/Od'], 'msvc': ['/Od'],
'gcc': ['-Og'],
'owcc': ['-O0', '-fno-omit-frame-pointer', '-funwind-tables', '-fno-omit-leaf-frame-pointer'], 'owcc': ['-O0', '-fno-omit-frame-pointer', '-funwind-tables', '-fno-omit-leaf-frame-pointer'],
'default': ['-O1'] 'default': ['-O0']
}, },
'sanitize': { 'sanitize': {
'msvc': ['/Od', '/RTC1'], 'msvc': ['/Od', '/RTC1'],