Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: build/common.gypi

Issue 1309263004: Add /Zc:sizedDealloc- to work around VS 2015 bug (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix sloppy typo. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/config/compiler/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 5a38311d8bfce7b2a0940005a8ef292e14408fbe..759c1ca55c9a804a01090e268ecdba73624f4e48 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -3337,6 +3337,16 @@
},
},
}],
+ ['OS=="win" and MSVS_VERSION == "2015"', {
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'AdditionalOptions': [
+ # Work around crbug.com/526851, bug in VS 2015 RTM compiler.
+ '/Zc:sizedDealloc-',
+ ],
+ },
+ },
+ }],
],
},
'x86_Base': {
« no previous file with comments | « no previous file | build/config/compiler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698