rust/src/librustc_driver
kennytm 7bc9fe3250
Rollup merge of #49092 - mark-i-m:deptrack_readme, r=nikomatsakis
Replace many of the last references to readmes

In particular, this removes the dep track readme, so it should not be merged before https://github.com/rust-lang-nursery/rustc-guide/pull/92

Fix #47935

cc #48478

r? @nikomatsakis
2018-03-20 07:15:19 +08:00
..
profile Move PROFQ_CHAN to a Session field 2018-03-09 08:04:31 +01:00
build.rs rustc: Add some build scripts for librustc crates 2017-07-22 22:04:13 -07:00
Cargo.toml introduce infcx.at(..).normalize(..) operation [VIC] 2018-03-13 11:22:05 -04:00
derive_registrar.rs kill a bunch of one off tasks 2017-04-18 08:20:12 -04:00
driver.rs Auto merge of #48985 - scalexm:lowering, r=nikomatsakis 2018-03-18 07:35:43 +00:00
lib.rs Auto merge of #48904 - Zoxc:code-and-file-maps, r=michaelwoerister 2018-03-17 08:54:22 +00:00
pretty.rs rustc: Load the rustc_trans crate at runtime 2018-01-27 19:16:21 -08:00
README.md Replace many of the last references to readmes 2018-03-16 12:43:22 -05:00
test.rs Auto merge of #47630 - canndrew:exhaustive-patterns, r=nikomatsakis 2018-03-14 23:43:04 +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.