rust/compiler/rustc_driver
Matthew Jasper 9e6e89af69 Fix RUSTC_LOG handling
Rustc was incorrectly reading the value of `RUSTC_LOG` as the
environment vairable with the logging configuration, rather than the
logging configuration itself.
2021-10-10 19:59:36 +01:00
..
src Fix RUSTC_LOG handling 2021-10-10 19:59:36 +01:00
Cargo.toml Bump tracing to get the instrumentation perf improvement 2021-10-02 08:22:03 +00:00
README.md mv compiler to compiler/ 2020-08-30 18:45:07 +03:00

README.md

The driver crate is effectively the "main" function for the rust compiler. It orchestrates 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).

For more information about how the driver works, see the rustc dev guide.