Introduction - cargo-bisect-rustc (original) (raw)
- 1. Introduction
- 2. Installation
- 3. Basic usage
- 4. Tutorial
- 5. Rust source repo
- 6. Bisection boundaries
- 7. Rustup toolchains
- 8. Git bisect a custom build
- 9. Alt builds
- 10. Examples
- 10.2. Scripting on Windows
- 10.3. Incremental compilation
- 10.4. Slow or hung compilation
- 10.5. Using extra components
- 10.6. Running without Cargo
- 10.7. Preserving toolchains
- 10.8. Bisecting Rustdoc
- 10.9. Bisecting Clippy
- 10.10. Documentation changes
- 10.11. Flaky errors
cargo-bisect-rustc
Introduction
The cargo-bisect-rustc tool makes it super easy to find exactly when behavior has regressed in rustc. It automatically downloads rustc artifacts and tests them against a project you provide until it finds the regression.
The Installation chapter shows how to install cargo-bisect-rustc
. For a quick introduction, see the Tutorial. Otherwise, start at the Basic usage chapter to learn how cargo-bisect-rustc
works.