2012-12-11 02:32:48 +01:00
|
|
|
# Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
# file at the top-level directory of this distribution and at
|
|
|
|
# http://rust-lang.org/COPYRIGHT.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
# option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
2011-09-14 01:05:53 +02:00
|
|
|
|
|
|
|
ifdef CFG_PERF_TOOL
|
2013-10-21 11:18:21 +02:00
|
|
|
rustc-perf$(X): $(CFG_BUILD)/stage2/bin/rustc$(X_$(CFG_BUILD))
|
2011-09-14 01:05:53 +02:00
|
|
|
@$(call E, perf compile: $@)
|
2013-10-21 11:18:21 +02:00
|
|
|
$(PERF_STAGE2_T_$(CFG_BUILD)_H_$(CFG_BUILD)) \
|
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
|
2013-10-21 11:18:21 +02:00
|
|
|
rustc-perf$(X): $(CFG_BUILD)/stage2/bin/rustc$(X_$(CFG_BUILD))
|
2011-09-14 02:32:18 +02:00
|
|
|
$(Q)touch $@
|
2011-09-14 01:05:53 +02:00
|
|
|
endif
|
|
|
|
|
2013-10-21 11:18:21 +02:00
|
|
|
perf: check-stage2-perf rustc-perf$(X_$(CFG_BUILD))
|
|
|
|
$(Q)find $(CFG_BUILD)/test/perf -name \*.err | xargs cat
|
2011-09-14 02:32:18 +02:00
|
|
|
$(Q)cat rustc-perf.err
|