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

Unified Diff: Makefile.standalone

Issue 1417393003: Subzero. ARM32. New bool folding. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fixes lit tests. Created 5 years, 1 month 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/IceInstARM32.h » ('j') | src/IceTargetLoweringARM32.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 f06ec157bda15388489b4a20587d0a383d4974c8..7ef39b6911823e75c25ce0b86f53e30306c9b2c3 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -418,12 +418,15 @@ ifeq ($(TARGET),arm32)
SPEC := -O2 --filetype=asm
endif
-%.spec2k: % $(OBJDIR)/pnacl-sz make_symlink runtime
+%.spec2k: %
Jim Stichnoth 2015/11/11 18:55:04 As discussed offline, consider reverting this Make
John 2015/11/11 22:19:44 Done.
./pydir/szbuild_spec2k.py -v --force --target=$(TARGETFLAG) $(SPEC) $<
( cd ../../../tests/spec2k; \
./run_all.sh RunTimedBenchmarks $(SETUP) train $< )
-check-spec: $(ALLSPEC:=.spec2k)
+where-am-i = $(CURDIR)/$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
+check-spec: $(OBJDIR)/pnacl-sz
+ +make -f $(call where-am-i) make_symlink
+ +make -f $(call where-am-i) TARGETFLAG='$(TARGETFLAG)' SPEC='$(SPEC)' ALLSPEC='$(ALLSPEC)' $(ALLSPEC:=.spec2k)
Jim Stichnoth 2015/11/11 18:55:04 80-col
John 2015/11/11 22:19:44 N/A
check: check-lit check-unit check-xtest
« no previous file with comments | « no previous file | src/IceInstARM32.h » ('j') | src/IceTargetLoweringARM32.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698