Skip to content

Commit ebd2d1d

Browse files
authored
Merge pull request #1418 from rust-lang/quick-links-artifact-size
Add artifact size to compare page quick links
2 parents b863b1a + f2ddde1 commit ebd2d1d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

site/static/compare.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,11 @@
4848
<div class="quick-links">
4949
<div>Quick links:</div>
5050
<div v-for="metric in [
51-
['Instructions', 'instructions:u'],
52-
['Cycles', 'cycles:u'],
53-
['Max RSS', 'max-rss']
54-
]" :class="{ active: stat === metric[1] }">
51+
['Instructions', 'instructions:u', 'Number of executed instructions'],
52+
['Cycles', 'cycles:u', 'Number of executed cycles'],
53+
['Max RSS', 'max-rss', 'Highest amount of total allocated memory during the course of the compilation'],
54+
['Binary size', 'size:linked_artifact', 'Size of the generated binary artifact']
55+
]" :class="{ active: stat === metric[1] }" :title="metric[2]">
5556
<a :href="createUrlForMetric(metric[1])">{{ metric[0] }}</a>
5657
</div>
5758
</div>

0 commit comments

Comments
 (0)