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

Unified Diff: Makefile.standalone

Issue 1876413002: Subzero. WASM. Additional progress. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review feedback and merging with master Created 4 years, 8 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 | « .gitignore ('k') | README-wasm.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index 208c220c64a6efe7ebad5d2af64dfbc50c3b05ed..abfe1ecf70de07607845e103f6bb009223db38bd 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -256,15 +256,13 @@ endif
BASE_CXXFLAGS := -std=gnu++11 -Wall -Wextra -fno-rtti \
-fno-exceptions $(OPTLEVEL) $(ASSERTIONS) -g -pedantic \
- $(LLVM_EXTRA_WARNINGS) $(CXX_EXTRA) -MP -MD
+ $(LLVM_EXTRA_WARNINGS) $(CXX_EXTRA) -MP -MD -Werror
ifdef WASM
- # The WASM code inherits a lot of V8 code, which does not compile with
- # -Werror.
BASE_CXXFLAGS := $(BASE_CXXFLAGS) $(V8_CXXFLAGS) -DALLOW_WASM=1
OBJDIR := $(OBJDIR)+Wasm
else
- BASE_CXXFLAGS := $(BASE_CXXFLAGS) -Werror -DALLOW_WASM=0
+ BASE_CXXFLAGS := $(BASE_CXXFLAGS) -DALLOW_WASM=0
endif
CXXFLAGS := $(LLVM_CXXFLAGS) $(BASE_CXXFLAGS) $(CXX_DEFINES) $(HOST_FLAGS) \
« no previous file with comments | « .gitignore ('k') | README-wasm.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698