rust/src/librustc_driver
2018-10-19 09:45:45 +02:00
..
profile rustc/driver: whitespace & formatting fixes 2018-10-13 10:15:46 +02:00
build.rs
Cargo.toml Remove OneVector 2018-09-26 10:43:37 +02:00
derive_registrar.rs
driver.rs Prefer unwrap_or_else to unwrap_or in case of function calls/allocations 2018-10-19 09:45:45 +02:00
lib.rs Auto merge of #55008 - ljedrz:cleanup_rustc_driver, r=estebank 2018-10-15 00:18:27 +00:00
pretty.rs rustc/driver: whitespace & formatting fixes 2018-10-13 10:15:46 +02:00
README.md
test.rs rustc_driver/test.rs: rustfmt 2018-09-26 09:38:26 -04: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.