@@ -401,46 +401,6 @@ library. The default enabled features, at this time, are `backtrace` and
401
401
` panic_unwind ` . This flag expects a comma-separated list and, if provided, will
402
402
override the default list of features enabled.
403
403
404
- #### Reading the graphs
405
-
406
- There are two graphs in the output. The "unit" graph shows the duration of
407
- each unit over time. A "unit" is a single compiler invocation. There are lines
408
- that show which additional units are "unlocked" when a unit finishes. That is,
409
- it shows the new units that are now allowed to run because their dependencies
410
- are all finished. Hover the mouse over a unit to highlight the lines. This can
411
- help visualize the critical path of dependencies. This may change between runs
412
- because the units may finish in different orders.
413
-
414
- The "codegen" times are highlighted in a lavender color. In some cases, build
415
- pipelining allows units to start when their dependencies are performing code
416
- generation. This information is not always displayed (for example, binary
417
- units do not show when code generation starts).
418
-
419
- The "custom build" units are ` build.rs ` scripts, which when run are
420
- highlighted in orange.
421
-
422
- The second graph shows Cargo's concurrency over time. The background
423
- indicates CPU usage. The three lines are:
424
- - "Waiting" (red) — This is the number of units waiting for a CPU slot to
425
- open.
426
- - "Inactive" (blue) — This is the number of units that are waiting for their
427
- dependencies to finish.
428
- - "Active" (green) — This is the number of units currently running.
429
-
430
- Note: This does not show the concurrency in the compiler itself. ` rustc `
431
- coordinates with Cargo via the "job server" to stay within the concurrency
432
- limit. This currently mostly applies to the code generation phase.
433
-
434
- Tips for addressing compile times:
435
- - Look for slow dependencies.
436
- - Check if they have features that you may wish to consider disabling.
437
- - Consider trying to remove the dependency completely.
438
- - Look for a crate being built multiple times with different versions. Try to
439
- remove the older versions from the dependency graph.
440
- - Split large crates into smaller pieces.
441
- - If there are a large number of crates bottlenecked on a single crate, focus
442
- your attention on improving that one crate to improve parallelism.
443
-
444
404
### binary-dep-depinfo
445
405
* Tracking rustc issue: [ #63012 ] ( https://github.com/rust-lang/rust/issues/63012 )
446
406
0 commit comments