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

Unified Diff: build/SConscript.main

Issue 205: GCC 4.3 build fixes. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 12 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 | webkit/pending/Page.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/SConscript.main
===================================================================
--- build/SConscript.main (revision 1661)
+++ build/SConscript.main (working copy)
@@ -348,6 +348,8 @@
]
env.Replace(
CCFLAGS = ['-m32', '-g', '-pthread', '-Wall', '-Werror'] + excluded_warnings,
+ # Needed for using ext/hash_map on GCC 4.3
+ CXXFLAGS = ['-Wno-deprecated'],
Evan Martin 2008/09/03 00:10:16 Can you stick this flag up in the group of exclude
LINKFLAGS = ['-m32', '-pthread'],
# We need rt for clock_gettime.
LIBS = ['rt'],
« no previous file with comments | « no previous file | webkit/pending/Page.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698