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

Unified Diff: third_party/libexif/libexif.gyp

Issue 657883003: Disable /analyze for the libexif and yasm projects to hack around internal compiler errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wrapping comments at column 80 Created 6 years, 2 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 | « third_party/libexif/README.chromium ('k') | third_party/yasm/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libexif/libexif.gyp
diff --git a/third_party/libexif/libexif.gyp b/third_party/libexif/libexif.gyp
index efb17026927947de9e8a4174b0e92ff15c8c5bce..9a36098d234a63393744a8f83552d40a550f30fa 100644
--- a/third_party/libexif/libexif.gyp
+++ b/third_party/libexif/libexif.gyp
@@ -91,6 +91,16 @@
4018, # size/unsigned mismatch
4267, # size_t -> ExifLong truncation on amd64
],
+ # As of VS 2013 Update 3, building this project with /analyze hits
+ # an internal compiler error on exif-entry.c. This halts the build
+ # and prevents subsequent analysis. Therefore, /analyze is
+ # disabled for this project. See this bug for details:
+ # https://connect.microsoft.com/VisualStudio/feedback/details/1014689/internal-compiler-error
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'AdditionalOptions!': [ '/analyze' ]
+ },
+ },
}],
],
},
« no previous file with comments | « third_party/libexif/README.chromium ('k') | third_party/yasm/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698