rust/src/librustc_driver
2017-09-23 15:10:00 +02:00
..
profile -Z profile-query-and-key, separate from -Z profile-query; query key is string option 2017-08-23 15:21:39 -06:00
build.rs rustc: Add some build scripts for librustc crates 2017-07-22 22:04:13 -07:00
Cargo.toml Merge rustc_trans_trait into rustc_trans_utils 2017-09-23 13:00:28 +02:00
derive_registrar.rs kill a bunch of one off tasks 2017-04-18 08:20:12 -04:00
driver.rs Fix some nits 2017-09-23 15:00:49 +02:00
lib.rs Remove build_diagnostic_array hack 2017-09-23 15:10:00 +02:00
pretty.rs incr.comp.: Remove IncrementalHashesMap and calculate_svh module. 2017-09-20 11:21:25 +02:00
README.md rework the README.md for rustc and add other readmes 2017-09-19 09:00:59 -04:00
target_features.rs Introduce temporary target feature crt_static_respected 2017-08-22 16:24:29 -05:00
test.rs Add TransCrate trait 2017-09-23 12:59:46 +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).