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

Unified Diff: Makefile

Issue 265703002: Add Om1 lowering with no optimizations (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Created 6 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 | « no previous file | crosstest/crosstest.py » ('j') | crosstest/crosstest.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
index e32ae89c6c0c91a5cf8709826efcc3ea605f3588..a1584f510ba9169a1fe2c6bc9819e84ecac0e29d 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ LLVM_LDFLAGS := `$(LLVM_BIN_PATH)/llvm-config --ldflags --libs`
# It's recommended that CXX matches the compiler you used to build LLVM itself.
OPTLEVEL := -O0
CXX := g++
-CXXFLAGS := -Wall -Werror -fno-rtti -fno-exceptions \
+CXXFLAGS := -Wall -Wextra -Werror -fno-rtti -fno-exceptions \
JF 2014/05/01 00:16:55 That's bold. Kudos if you can keep -Wextra, but I'
Jim Stichnoth 2014/05/05 07:03:55 So far so good. The only complaint to deal with w
$(OPTLEVEL) -g $(LLVM_CXXFLAGS) -m32
LDFLAGS := -m32
@@ -38,7 +38,10 @@ SRCS= \
IceCfgNode.cpp \
IceGlobalContext.cpp \
IceInst.cpp \
+ IceInstX8632.cpp \
IceOperand.cpp \
+ IceTargetLowering.cpp \
+ IceTargetLoweringX8632.cpp \
IceTypes.cpp \
llvm2ice.cpp
@@ -64,6 +67,7 @@ build:
check: llvm2ice
LLVM_BIN_PATH=$(LLVM_BIN_PATH) \
$(LLVM_SRC_PATH)/utils/lit/lit.py -sv tests_lit
+ (cd crosstest; LLVM_BIN_PATH=$(LLVM_BIN_PATH) ./runtests.sh)
JF 2014/05/01 00:16:55 When will it be appropriate to add test bots to su
Jim Stichnoth 2014/05/05 07:03:55 Should be doable and appropriate now - as of the p
# TODO: Fix the use of wildcards.
format:
« no previous file with comments | « no previous file | crosstest/crosstest.py » ('j') | crosstest/crosstest.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698