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

Unified Diff: Makefile.standalone

Issue 1575873006: Subzero: Fix g++ warnings. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes Created 4 years, 11 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 | src/IceAssemblerARM32.cpp » ('j') | src/IceUtils.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index eb9a3aa61b7272c9ad01f4a40886afa4d9cfac47..a9a9795dcc228e0338ffedd9ac1c6207340c6999 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -189,9 +189,14 @@ LLVM_EXTRA_WARNINGS := -Wcovered-switch-default
ifdef GPLUSPLUS
CXX := CCACHE_CPP2=yes $(CCACHE) g++
STDLIB_FLAGS :=
- LLVM_EXTRA_WARNINGS := -Wno-unknown-pragmas -Wno-unused-parameter \
- -Wno-comment -Wno-enum-compare -Wno-strict-aliasing \
- -Wno-return-type
+ LLVM_EXTRA_WARNINGS := \
+ -Wcast-qual \
+ -Wno-comment \
+ -Wno-long-long \
+ -Wno-maybe-uninitialized \
+ -Wno-missing-field-initializers \
+ -Wno-unused-parameter \
+ -Wwrite-strings
OBJDIR := $(OBJDIR)+Gplusplus
endif
« no previous file with comments | « no previous file | src/IceAssemblerARM32.cpp » ('j') | src/IceUtils.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698