rust/compiler/rustc_driver
Yuki Okushi 7e4b1737ff
Rollup merge of #87553 - bjorn3:fix_hotplug_codegen_version, r=wesleywiser
Fix typo in rustc_driver::version

This caused rustc `-Zcodegen-backend=foo.so -vV` to look for `oo.so` instead of `foo.so`
2021-07-30 16:26:54 +09:00
..
src Rollup merge of #87553 - bjorn3:fix_hotplug_codegen_version, r=wesleywiser 2021-07-30 16:26:54 +09:00
Cargo.toml Support -Z unpretty=thir-tree again 2021-07-24 17:18:15 -04: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.