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

Unified Diff: tests/spec2k/Makefile.common

Issue 1026243002: Add Subzero to test scripts. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Code review changes Created 5 years, 9 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 | « tests/minnacl/nacl.scons ('k') | tests/spec2k/run_all.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/spec2k/Makefile.common
diff --git a/tests/spec2k/Makefile.common b/tests/spec2k/Makefile.common
index b52c8d9deafd2d55f2b66f8f2b974e47b0b2aafa..d701c4bdc5ad389654bd104be1c8b7f836d76d04 100644
--- a/tests/spec2k/Makefile.common
+++ b/tests/spec2k/Makefile.common
@@ -289,6 +289,7 @@ EXTRA_TRANSLATOR_FLAGS=
endif
PNACL_TRANSLATOR_FLAGS_FAST=-translate-fast
+PNACL_SZ_FLAGS=--use-sz -O2
PNACL_BIN=$(PNACL_ROOT)/bin
# Sandboxed translation uses the standalone translator install (which only
@@ -405,6 +406,11 @@ $(IT).pnacl.opt.x8632: $(IT).opt.stripped.pexe
$(PNACL_TRANSLATOR) $(PNACL_FLAGS) $^ -o $@ -arch x86-32
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
+$(IT).pnacl.opt.sz.x8632: $(IT).opt.stripped.pexe
+ $(PNACL_TRANSLATOR) $(PNACL_FLAGS) $(PNACL_SZ_FLAGS) $^ \
+ -o $@ -arch x86-32
+ @$(call LOG_TIME_AND_SIZE,$@,$(IT))
+
$(IT).pnacl_translator.x8632: $(IT).unopt.stripped.pexe
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-32
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
@@ -413,6 +419,11 @@ $(IT).pnacl_translator.opt.x8632: $(IT).opt.stripped.pexe
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-32
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
+$(IT).pnacl_translator.opt.sz.x8632: $(IT).opt.stripped.pexe
+ $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_SZ_FLAGS) $^ \
+ -o $@ -arch x86-32
+ @$(call LOG_TIME_AND_SIZE,$@,$(IT))
+
$(IT).pnacl_translator_fast.opt.x8632: $(IT).opt.stripped.pexe
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_TRANSLATOR_FLAGS_FAST) \
$^ -o $@ -arch x86-32
« no previous file with comments | « tests/minnacl/nacl.scons ('k') | tests/spec2k/run_all.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698