Move trans, back, driver, and back into a new crate, rustc_trans. Reduces memory usage significantly and opens opportunities for more parallel compilation.

This commit is contained in:
Niko Matsakis
2014-11-15 20:30:33 -05:00
parent f637f1c5a2
commit dc6e414e6f
80 changed files with 640 additions and 532 deletions

View File

@@ -12,6 +12,6 @@
extern crate "rustdoc" as this;
#[cfg(rustc)]
extern crate "rustc" as this;
extern crate "rustc_trans" as this;
fn main() { this::main() }