rust/src/librustc_driver
2018-06-30 07:10:18 +00:00
..
profile Move query functions out from the define_maps! macro 2018-04-27 12:09:59 +02:00
build.rs rustc: Add some build scripts for librustc crates 2017-07-22 22:04:13 -07:00
Cargo.toml Update Rayon version 2018-06-06 15:25:16 +02:00
derive_registrar.rs kill a bunch of one off tasks 2017-04-18 08:20:12 -04:00
driver.rs Attempt to fix hygiene for global_allocator 2018-06-24 16:10:20 -05:00
lib.rs Use Idents for associated item definitions in HIR 2018-06-28 11:04:50 +03:00
pretty.rs Generate the NodeId for existential type in the AST 2018-06-27 11:17:25 +02:00
README.md Replace many of the last references to readmes 2018-03-16 12:43:22 -05:00
test.rs Auto merge of #51248 - fabric-and-ink:newtype_index_debrujin, r=nikomatsakis 2018-06-18 23:14:50 +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.