We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d135e1b commit 18d9e65Copy full SHA for 18d9e65
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: 6d3dd0e48cdb23c99be9d2d2b33dbfda08b35e30
+refs/heads/master: c0ffd2ea26c657ccab0a467c6843b7ce4300ef63
trunk/mk/perf.mk
@@ -2,11 +2,13 @@
ifdef CFG_PERF_TOOL
3
rustc-perf$(X): stage2/rustc$(X)
4
@$(call E, perf compile: $@)
5
- $(PERF_STAGE1) -L stage2 -o $@ $(COMPILER_CRATE)
6
- rm -f $@
+ $(PERF_STAGE1) -L stage2 -o $@ $(COMPILER_CRATE) >rustc-perf.err 2>&1
+ $(Q)rm -f $@
7
else
8
9
- touch $@
+ $(Q)touch $@
10
endif
11
12
perf: check-stage2-perf rustc-perf$(X)
13
+ $(Q)find test/perf -name \*.err | xargs cat
14
+ $(Q)cat rustc-perf.err
0 commit comments