0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-22 18:32:30 +01:00
rust/compiler/rustc_driver_impl
Jubilee 31fbf67ce3
Rollup merge of #130899 - bjorn3:wasi_bootstrap_fixes, r=davidtwco
Couple of changes to make it easier to compile rustc for wasm

This is a subset of the patches I have on my rust fork to compile rustc for wasm32-wasip1.
2024-10-07 11:10:53 -07:00
..
src Avoid unused import warning for the Ctrl-C handler on wasm 2024-10-04 12:25:48 +02:00
Cargo.toml bump few deps 2024-09-27 09:23:05 +03:00
messages.ftl
README.md Update out-dated link 2024-10-06 18:08:28 +08:00

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.