rust/compiler/rustc_driver_impl
Matthias Krüger 9ac5cc86d7
Rollup merge of #122187 - bjorn3:merge_header_version_checks, r=petrochenkov
Move metadata header and version checks together

This will make it easier to report rustc versions for older metadata formats.

Split out of https://github.com/rust-lang/rust/pull/120855
2024-03-09 16:21:17 +01:00
..
src Rollup merge of #122187 - bjorn3:merge_header_version_checks, r=petrochenkov 2024-03-09 16:21:17 +01:00
Cargo.toml Hint user to update nightly on ICEs produced from outdated nightly 2024-02-27 01:13:14 +00:00
messages.ftl Adjust wording 2024-02-27 12:53:41 +00:00
README.md

The driver crate is effectively the "main" function for the rust compiler. It orchestrates the compilation process and "knits together" the code from the other crates within rustc. This crate itself does not contain any of the "main logic" of the compiler (though it does have some code related to pretty printing or other minor compiler options).

For more information about how the driver works, see the rustc dev guide.