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

Unified Diff: Makefile.standalone

Issue 1202533003: Extracts an TargetX86Base target which will be used as the common X86{32,64} implementation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 6 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/IceInst.h » ('j') | src/IceInst.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 5f2686ba8f7788db34b49715bed3689905a65640..7367804227f417b0df59a25a13f04ffba5225d52 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -190,8 +190,8 @@ SRCS = \
IceRNG.cpp \
IceTargetLowering.cpp \
IceTargetLoweringARM32.cpp \
- IceTargetLoweringX8632.cpp \
IceTargetLoweringMIPS32.cpp \
+ IceTargetLoweringX8632.cpp \
IceThreading.cpp \
IceTimerTree.cpp \
IceTranslator.cpp \
@@ -249,7 +249,7 @@ $(SB_OBJDIR)/pnacl-sz.x86-32.nexe: $(SB_OBJS)
# TODO(stichnot): Be more precise than "*.h" here and elsewhere.
$(OBJS): $(OBJDIR)/%.o: src/%.cpp src/*.h src/*.def
- $(CXX) -c $(CXXFLAGS) $< -o $@
+ $(CXX) -ferror-limit=999999 -c $(CXXFLAGS) $< -o $@
Jim Stichnoth 2015/06/22 21:52:01 Not sure I want to live on this planet any more.
John 2015/06/22 22:09:23 <rant>I hate this option! I want to compiler to sp
$(SB_OBJS): $(SB_OBJDIR)/%.o: src/%.cpp src/*.h src/*.def
$(SB_CXX) -c $(SB_CXXFLAGS) $< -o $@
« no previous file with comments | « no previous file | src/IceInst.h » ('j') | src/IceInst.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698