We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f8cc5d7 + 7d999a5 commit 27566abCopy full SHA for 27566ab
src/doc/rustc-dev-guide/src/profiling/with_perf.md
@@ -52,6 +52,13 @@ you made in the beginning. But there are some things to be aware of:
52
- You probably don't want incremental messing about with your
53
profile. So something like `CARGO_INCREMENTAL=0` can be helpful.
54
55
+In case to avoid the issue of `addr2line xxx/elf: could not read first record` when reading
56
+collected data from `cargo`, you may need use the latest version of `addr2line`:
57
+
58
+```bash
59
+cargo install addr2line --features="bin"
60
+```
61
62
### Gathering a perf profile from a `perf.rust-lang.org` test
63
64
Often we want to analyze a specific test from `perf.rust-lang.org`.
0 commit comments