rust/src/librustc_driver
Mazdak Farrokhzad 448b38f0bf
Rollup merge of #64235 - mati865:env_logger, r=alexcrichton
Upgrade env_logger to 0.6
2019-09-07 20:01:48 +02:00
..
args.rs Move argfile expansion into run_compiler 2019-08-20 12:34:14 -07:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Upgrade env_logger to 0.6 2019-09-06 20:04:12 +02:00
lib.rs Remove rustc_diagnostic_macros feature 2019-09-05 12:35:18 -04:00
pretty.rs Move the HIR cfg to rustc_ast_borrowck 2019-09-06 18:02:12 +01:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06: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.