mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
We previously had this and removed it because it caused runtime slowdowns (discussion in #11102), but that was in release mode. Debug mode is already very slow at runtime. In my opinion, debug mode is mostly for the edit-compile-test cycle which is currently dominated by compile times, so sacrificing runtime for compile time makes sense. I’ve observed a ~30% improvement of compile times with this. This figure is consistent between a very fast desktop with 4 cores / 8 threads and a not-as-fast laptop with 2 cores / 4 threads.
16 lines
245 B
TOML
16 lines
245 B
TOML
[workspace]
|
|
members = [
|
|
"ports/cef",
|
|
"ports/geckolib",
|
|
"ports/servo",
|
|
"support/android/build-apk",
|
|
]
|
|
|
|
[profile.dev]
|
|
codegen-units = 4
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
# Uncomment to profile on Linux:
|
|
# debug = true
|
|
# lto = false
|