We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 279f611 commit e67542aCopy full SHA for e67542a
common.gypi
@@ -54,8 +54,13 @@
54
'v8_enable_handle_zapping%': 1,
55
},
56
'defines': [ 'DEBUG', '_DEBUG' ],
57
- 'cflags': [ '-g', '-Og' ],
+ 'cflags': [ '-g' ],
58
'conditions': [
59
+ ['clang==1', {
60
+ 'cflags': [ '-O0' ], # https://llvm.org/bugs/show_bug.cgi?id=20765
61
+ }, {
62
+ 'cflags': [ '-Og' ], # Debug-friendly optimizations only.
63
+ }],
64
['target_arch=="x64"', {
65
'msvs_configuration_platform': 'x64',
66
}],
0 commit comments