rust/src/librustc_driver
Mark Rousskov 402a8af1d5 Remove lint callback from driver
This is leftover from a restructuring of lint registration for drivers;
it should now happen via the register_lints field on Config rather than
this function.
2019-10-25 19:27:57 -04:00
..
args.rs Move argfile expansion into run_compiler 2019-08-20 12:34:14 -07:00
build.rs
Cargo.toml Create lint store during plugin registration 2019-10-17 19:41:21 -04:00
lib.rs Remove lint callback from driver 2019-10-25 19:27:57 -04:00
pretty.rs -Z unpretty message: include expanded,hygiene 2019-09-27 19:54:25 +02: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 guide.