2017-08-31 13:33:19 -05:00
|
|
|
The `driver` crate is effectively the "main" function for the rust
|
2017-12-26 01:52:27 -06:00
|
|
|
compiler. It orchestrates the compilation process and "knits together"
|
2017-08-31 13:33:19 -05:00
|
|
|
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).
|
|
|
|
|
2020-03-05 15:07:42 -06:00
|
|
|
For more information about how the driver works, see the [rustc dev guide].
|
2017-08-31 13:33:19 -05:00
|
|
|
|
2020-03-09 16:33:04 -05:00
|
|
|
[rustc dev guide]: https://rustc-dev-guide.rust-lang.org/rustc-driver.html
|