2011-09-14 01:05:53 +02:00
|
|
|
|
|
|
|
ifdef CFG_PERF_TOOL
|
2011-11-21 22:11:40 +01:00
|
|
|
rustc-perf$(X): $(CFG_HOST_TRIPLE)/stage2/bin/rustc$(X)
|
2011-09-14 01:05:53 +02:00
|
|
|
@$(call E, perf compile: $@)
|
2012-01-17 23:43:42 +01:00
|
|
|
$(PERF_STAGE2_T_$(CFG_HOST_TRIPLE)_H_$(CFG_HOST_TRIPLE)) \
|
2011-12-20 11:17:13 +01:00
|
|
|
-o $@ $(COMPILER_CRATE) >rustc-perf.err 2>&1
|
|
|
|
$(Q)rm -f $(LIBRUSTC_GLOB)
|
2011-09-14 01:05:53 +02:00
|
|
|
else
|
2011-11-21 22:11:40 +01:00
|
|
|
rustc-perf$(X): $(CFG_HOST_TRIPLE)/stage2/bin/rustc$(X)
|
2011-09-14 02:32:18 +02:00
|
|
|
$(Q)touch $@
|
2011-09-14 01:05:53 +02:00
|
|
|
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
|
2011-09-14 02:32:18 +02:00
|
|
|
$(Q)cat rustc-perf.err
|