Skip to content

Commit ac68893

Browse files
committed
Add Rust compiler performance 2025 survey blog post
1 parent de97b4c commit ac68893

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
+++
2+
path = "9999/12/31/rust-compiler-performance-survey-2025"
3+
title = "Rust compiler performance survey 2025"
4+
authors = ["Jakub Beránek"]
5+
6+
[extra]
7+
team = "the Compiler Performance Working Group"
8+
team_url = "https://www.rust-lang.org/governance/teams/compiler#team-wg-compiler-performance"
9+
+++
10+
11+
Long compile times of Rust code are frequently being cited as one of the biggest [challenges][annual-survey] limiting the productivity of Rust developers. Rust compiler contributors are of course aware of that, and they are continuously working to improve the situation, by finding [new ways][how-to-speed-up-the-compiler] of speeding up the compiler, [triaging performance regressions][performance-triage] and [measuring][perf-dashboard] our long-term performance improvements. Recently, we also made progress on some [large changes][stabilize-lld] that have been in the making for a long time, which could significantly improve compiler performance by default.
12+
13+
When we talk about compilation performance, it is important to note that it is not always so simple as determining how long does it take `rustc` to compile a crate. There are many diverse development workflows that might have competing trade-offs, and that can be bottlenecked by various factors, such as the integration of the compiler with the used build system.
14+
15+
In order to better understand these workflows, we have prepared a [Rust Compiler Performance Survey][survey-link]. This survey is focused specifically on compilation performance, which allows us to get more detailed data than what we usually get from the annual State of Rust survey. The data from this survey will help us find areas where we should focus our efforts on improving the productivity of Rust developers.
16+
17+
**You can fill out the survey [here][survey-link].**
18+
19+
Filling the survey will likely take you approximately 10 minutes, and the survey is fully anonymous. We will accept submissions until Monday, June 23rd, 2025. After the survey ends, we will evaluate the results and post key insights on this blog.
20+
21+
We invite you to fill the survey, as your responses will help us improve Rust compilation performance. Thank you!
22+
23+
[annual-survey]: https://blog.rust-lang.org/2025/02/13/2024-State-Of-Rust-Survey-results/#challenges
24+
[survey-link]: TODO
25+
[how-to-speed-up-the-compiler]: https://nnethercote.github.io/2025/03/19/how-to-speed-up-the-rust-compiler-in-march-2025.html
26+
[performance-triage]: https://github.com/rust-lang/rustc-perf/blob/master/triage/README.md
27+
[perf-dashboard]: https://perf.rust-lang.org/dashboard.html
28+
[stabilize-lld]: https://github.com/rust-lang/rust/pull/140525

0 commit comments

Comments
 (0)