rust/src/librustc_driver
bors 2c037d5589 Auto merge of #46779 - Zoxc:par-merge-without-sync, r=arielb1
Work towards thread safety in rustc

This PR is split out from https://github.com/rust-lang/rust/pull/45912. It contains changes which do not require the `sync` module.
2017-12-22 12:34:45 +00:00
..
profile Compress "small" spans to 32 bits and intern "large" spans 2017-09-23 00:34:13 +03:00
build.rs rustc: Add some build scripts for librustc crates 2017-07-22 22:04:13 -07:00
Cargo.toml Add sync module to rustc_data_structures 2017-12-17 14:14:51 +01:00
derive_registrar.rs
driver.rs Auto merge of #46779 - Zoxc:par-merge-without-sync, r=arielb1 2017-12-22 12:34:45 +00:00
lib.rs Auto merge of #46779 - Zoxc:par-merge-without-sync, r=arielb1 2017-12-22 12:34:45 +00:00
pretty.rs Auto merge of #46779 - Zoxc:par-merge-without-sync, r=arielb1 2017-12-22 12:34:45 +00: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 Combine GlobalArenas and DroplessArena into AllArenas 2017-12-21 19:21:39 +01: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).