rust/src/librustc_driver
2019-02-24 17:09:37 +01:00
..
profile Remove licenses 2018-12-25 21:08:33 -07:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml
driver.rs Fix a transposition in driver.rs. 2019-02-18 17:33:52 -08:00
lib.rs Stabilize slice_sort_by_cached_key 2019-02-12 22:26:44 -08:00
pretty.rs hir: remove NodeId from Expr 2019-02-24 17:09:37 +01:00
proc_macro_decls.rs Querify local proc_macro_decls_static 2019-01-13 23:52:00 +01:00
README.md
test.rs rustc: doc comments 2019-02-10 23:42:32 +00: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.