Turn off incremental linking for Release build

This commit is contained in:
Cheng Zhao 2015-05-20 13:52:24 +08:00
parent d350e73dff
commit c60fcc4c9a

View file

@ -231,6 +231,10 @@
# "/Oy /Oy-" and warnings about overriding.
'AdditionalOptions': ['/Oy-'],
},
'VCLinkerTool': {
# Turn off incremental linking to save binary size.
'LinkIncremental': '1', # /INCREMENTAL:NO
},
},
'conditions': [
['OS=="linux"', {