| 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
|
|
|