• A
    rustc: Move bytecode compression into codegen · 8197a0bb
    Alex Crichton 提交于
    This commit moves compression of the bytecode from the `link` module to the
    `write` module, namely allowing it to be (a) cached by incremental compilation
    and (b) produced in parallel. The parallelization may show up as some nice wins
    during normal compilation and the caching in incremental mode should be
    beneficial for incremental compiles! (no more need to recompress the entire
    crate's bitcode on all builds)
    8197a0bb
write.rs 87.9 KB