2011-09-13 16:05:53 -07:00
|
|
|
|
|
|
|
ifdef CFG_PERF_TOOL
|
2011-11-21 13:11:40 -08:00
|
|
|
rustc-perf$(X): $(CFG_HOST_TRIPLE)/stage2/bin/rustc$(X)
|
2011-09-13 16:05:53 -07:00
|
|
|
@$(call E, perf compile: $@)
|
2012-01-17 14:43:42 -08:00
|
|
|
$(PERF_STAGE2_T_$(CFG_HOST_TRIPLE)_H_$(CFG_HOST_TRIPLE)) \
|
2011-12-20 18:17:13 +08:00
|
|
|
-o $@ $(COMPILER_CRATE) >rustc-perf.err 2>&1
|
|
|
|
$(Q)rm -f $(LIBRUSTC_GLOB)
|
2011-09-13 16:05:53 -07:00
|
|
|
else
|
2011-11-21 13:11:40 -08:00
|
|
|
rustc-perf$(X): $(CFG_HOST_TRIPLE)/stage2/bin/rustc$(X)
|
2011-09-13 17:32:18 -07:00
|
|
|
$(Q)touch $@
|
2011-09-13 16:05:53 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
perf: check-stage2-perf rustc-perf$(X)
|
2011-11-30 15:44:59 -08:00
|
|
|
$(Q)find $(CFG_HOST_TRIPLE)/test/perf -name \*.err | xargs cat
|
2011-09-13 17:32:18 -07:00
|
|
|
$(Q)cat rustc-perf.err
|