aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2014-11-19 08:59:58 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-11-19 08:59:58 -0800
commit26bdfcb4e4256c754fd0af792b5c3f3ae2cf762d (patch)
tree76705349a14057cb6d231fb6333129cc62fe04ab
parentad5e9a53270b96dcbfc9aa678c91157407058449 (diff)
Remove /arch:SSE2 from Win 64 Release builds
-rw-r--r--gyp/common_conditions.gypi12
1 files changed, 12 insertions, 0 deletions
diff --git a/gyp/common_conditions.gypi b/gyp/common_conditions.gypi
index 39e387eb0f..7e3f71d68b 100644
--- a/gyp/common_conditions.gypi
+++ b/gyp/common_conditions.gypi
@@ -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', #
+ },
+ },
},
},
}],