rust/src/librustc_driver
leonardo.yvens 06506bb751 [Syntax Breaking] Rename DefaultImpl to AutoImpl
DefaultImpl is a highly confusing name for what we now call auto impls,
as in `impl Send for ..`. The name auto impl is not formally decided
but for sanity anything is better than `DefaultImpl` which refers
neither to `default impl` nor to `impl Default`.
2017-11-03 16:13:20 -02:00
..
profile Compress "small" spans to 32 bits and intern "large" spans 2017-09-23 00:34:13 +03:00
build.rs
Cargo.toml Remove now unused dependency on flate2 from rustc_driver 2017-09-23 15:27:54 +02:00
derive_registrar.rs
driver.rs Auto merge of #45538 - nikomatsakis:nll-liveness, r=pnkfelix 2017-11-01 18:14:13 +00:00
lib.rs Add short message-format 2017-10-20 16:04:32 +02:00
pretty.rs Fix issue #44731. 2017-09-26 16:46:38 +08:00
README.md rework the README.md for rustc and add other readmes 2017-09-19 09:00:59 -04:00
target_features.rs
test.rs [Syntax Breaking] Rename DefaultImpl to AutoImpl 2017-11-03 16:13:20 -02: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 orchstrates 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).