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

Unified Diff: build/common.gypi

Issue 7111026: Don't treat warnings as errors when compiling with GCC 4.6 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Take two Created 9 years, 6 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 | no next file » | 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 11c5a34170a7f5c4612e4c58aa8ec04e39c8cba9..15097d5e2c05b8d51e984f61eabb19f17b9db68e 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1085,7 +1085,8 @@
# Use -fno-strict-aliasing, see http://crbug.com/32204
'no_strict_aliasing%': 1,
'conditions': [
- ['OS=="linux"', {
+ # Disabled for GCC 4.6; see http://crbug.com/80071
+ ['OS=="linux" and gcc_version!=46', {
'werror%': '-Werror',
}, { # turn off -Werror on other Unices
'werror%': '',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698