rust/src/librustc_driver
2019-01-28 16:24:33 +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 rustc: Move jemalloc from rustc_driver to rustc 2018-12-19 08:27:23 -08:00
driver.rs Use multiple threads by default. Limits tests to one thread. Do some renaming. 2019-01-28 16:24:33 +01:00
lib.rs Replace deprecated ATOMIC_INIT consts 2019-01-26 15:27:38 -07:00
pretty.rs Rollup merge of #57598 - h-michael:unpretty-help, r=oli-obk 2019-01-19 14:21:19 +01:00
proc_macro_decls.rs Querify local proc_macro_decls_static 2019-01-13 23:52:00 +01:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
test.rs Always calculate glob map but only for glob uses 2019-01-13 10:42:59 +01: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.