Added rustc_codegen_llvm to compiler documentation.

This commit is contained in:
David Wood 2018-08-24 13:09:34 +02:00
parent 63d66494af
commit c802be6f30
No known key found for this signature in database
GPG Key ID: 01760B4F9F53F154

View File

@ -712,7 +712,7 @@ impl Step for Rustc {
// Find dependencies for top level crates.
let mut compiler_crates = HashSet::new();
for root_crate in &["rustc", "rustc_driver"] {
for root_crate in &["rustc", "rustc_driver", "rustc_codegen_llvm"] {
let interned_root_crate = INTERNER.intern_str(root_crate);
find_compiler_crates(builder, &interned_root_crate, &mut compiler_crates);
}