Remove /arch:SSE2 from Win 64 Release builds

Review URL: https://codereview.chromium.org/740733002
This commit is contained in:
bsalomon 2014-11-19 08:59:58 -08:00 committed by Commit bot
parent ad5e9a5327
commit 26bdfcb4e4

View File

@ -138,9 +138,21 @@
},
'Release_x64': {
'inherit_from': ['Release'],
'msvs_settings': {
'VCCLCompilerTool': {
# Don't specify /arch. SSE2 is implied by 64bit and specifying it warns.
'EnableEnhancedInstructionSet': '0', #
},
},
},
'Release_Developer_x64': {
'inherit_from': ['Release_Developer'],
'msvs_settings': {
'VCCLCompilerTool': {
# Don't specify /arch. SSE2 is implied by 64bit and specifying it warns.
'EnableEnhancedInstructionSet': '0', #
},
},
},
},
}],