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