rust/mk/perf.mk

16 lines
452 B
Makefile
Raw Normal View History

ifdef CFG_PERF_TOOL
2011-11-21 22:11:40 +01:00
rustc-perf$(X): $(CFG_HOST_TRIPLE)/stage2/bin/rustc$(X)
@$(call E, perf compile: $@)
2012-01-17 23:43:42 +01:00
$(PERF_STAGE2_T_$(CFG_HOST_TRIPLE)_H_$(CFG_HOST_TRIPLE)) \
-o $@ $(COMPILER_CRATE) >rustc-perf.err 2>&1
$(Q)rm -f $(LIBRUSTC_GLOB)
else
2011-11-21 22:11:40 +01:00
rustc-perf$(X): $(CFG_HOST_TRIPLE)/stage2/bin/rustc$(X)
$(Q)touch $@
endif
perf: check-stage2-perf rustc-perf$(X)
2011-12-01 00:44:59 +01:00
$(Q)find $(CFG_HOST_TRIPLE)/test/perf -name \*.err | xargs cat
$(Q)cat rustc-perf.err