Skip to content

Commit

Permalink
Reduce time required to build from scratch in dev mode
Browse files Browse the repository at this point in the history
* Disable wasm reading of object
* Use tempfile bundled with rustc
* Don't optimize and don't generate debuginfo for build scripts and some
  build deps

Before: 354s (5m 45s)
After: 207s (3m 27s)
  • Loading branch information
bjorn3 committed Sep 21, 2019
1 parent f2c574a commit 3a7aa6c
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 120 deletions.
117 changes: 0 additions & 117 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 29 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,15 @@ ar = "0.8.0"
bitflags = "1.1.0"
byteorder = "1.2.7"
libc = "0.2.53"
tempfile = "3.0.7"
gimli = { git = "https://github.com/gimli-rs/gimli.git" }
indexmap = "1.0.2"
object = "0.14.0"
libloading = "0.5.1"

[dependencies.object]
version = "0.14.0"
default-features = false
features = ["compression", "read", "std"] # We don't need WASM support

# Uncomment to use local checkout of cranelift
#[patch."https://github.com/CraneStation/cranelift.git"]
#cranelift = { path = "../cranelift/cranelift-umbrella" }
Expand All @@ -41,5 +44,28 @@ libloading = "0.5.1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
cranelift-simplejit = { git = "https://github.com/CraneStation/cranelift.git" }

[profile.dev.overrides."*"]
[profile.dev]
# By compiling dependencies with optimizations, performing tests gets much faster.
opt-level = 3

[profile.dev.overrides."rustc_codegen_cranelift"]
# Disabling optimizations for cg_clif itself makes compilation after a change faster.
opt-level = 0

# Disable optimizations and debuginfo of build scripts and some of the heavy build deps, as the
# execution time of build scripts is so fast that optimizing them slows down the total build time.
[profile.dev.build-override]
opt-level = 0
debug = false

[profile.dev.overrides.cranelift-codegen-meta]
opt-level = 0
debug = false

[profile.dev.overrides.syn]
opt-level = 0
debug = false

[profile.dev.overrides.synstructure]
opt-level = 0
debug = false
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#![allow(intra_doc_link_resolution_failure)]

extern crate flate2;
extern crate tempfile;
extern crate rustc;
extern crate rustc_codegen_ssa;
extern crate rustc_codegen_utils;
Expand Down

0 comments on commit 3a7aa6c

Please sign in to comment.