rust/src/librustc_driver
2019-03-10 17:03:05 +01:00
..
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Add support for using a jobserver with Rayon 2019-03-01 01:15:37 +01:00
lib.rs Drop expanded AST later if in save_analysis mode 2019-03-10 17:03:05 +01:00
pretty.rs Make the rustc driver and interface demand driven 2019-03-10 04:49:45 +01:00
README.md
test.rs Make the rustc driver and interface demand driven 2019-03-10 04:49:45 +01:00

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 guide.