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

Unified Diff: Makefile.standalone

Issue 361733002: Update Subzero to start parsing PNaCl bitcode files. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Reformat IceConverter.cpp Created 6 years, 5 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/IceClFlags.h » ('j') | src/PNaClTranslator.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index b65e64833f7bf7c7579854c0f69fbd22180f9005..6a50f9a0302b8687c86509254db370d32b400f2f 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -30,7 +30,7 @@ LLVM_LDFLAGS := `$(LLVM_BIN_PATH)/llvm-config --ldflags --libs`
OPTLEVEL := -O0
CXX := g++
CXXFLAGS := -Wall -Wextra -Werror -fno-rtti -fno-exceptions \
- $(OPTLEVEL) -g $(LLVM_CXXFLAGS) -m32
+ $(OPTLEVEL) -g $(LLVM_CXXFLAGS) -m32 -Wno-error=unused-parameter
LDFLAGS := -m32
SRCS= \
@@ -46,8 +46,10 @@ SRCS= \
IceRegAlloc.cpp \
IceTargetLowering.cpp \
IceTargetLoweringX8632.cpp \
+ IceTranslator.cpp \
IceTypes.cpp \
- llvm2ice.cpp
+ llvm2ice.cpp \
+ PNaClTranslator.cpp
OBJS=$(patsubst %.cpp, build/%.o, $(SRCS))
« no previous file with comments | « no previous file | src/IceClFlags.h » ('j') | src/PNaClTranslator.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698