rust/src/librustc_driver
2018-03-08 08:35:38 +01:00
..
profile
build.rs
Cargo.toml Move librustc_const_eval to librustc_mir 2018-03-08 08:08:14 +01:00
derive_registrar.rs
driver.rs Regenerate tests 2018-03-08 08:35:38 +01:00
lib.rs Allow tools (e.g. miri) to enable rust logging 2018-03-08 08:34:09 +01:00
pretty.rs rustc: Load the rustc_trans crate at runtime 2018-01-27 19:16:21 -08:00
README.md Prefer to use attr::contains_name() and attr::find_by_name() 2017-12-28 12:32:24 +09:00
test.rs Replace Rc with Lrc for shared data 2018-03-02 10:48:52 +01:00

NB: This crate is part of the Rust compiler. For an overview of the compiler as a whole, see the README.md file found in librustc.

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