diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-01-14 01:38:37 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-01-14 01:38:37 +0100 |
commit | fe0d2866f12aabedca5cc4394d642a5bf0e30fbe (patch) | |
tree | ec9da72482c0666e842ccd389597d643b0f6403e /servobuild.example | |
parent | 7b92eb932b34ce1a4b823b2571a50a928491b4b2 (diff) | |
download | servo-fe0d2866f12aabedca5cc4394d642a5bf0e30fbe.tar.gz servo-fe0d2866f12aabedca5cc4394d642a5bf0e30fbe.zip |
Restore the ability to disable incremental compilation
It became the default in debug mode in the last Rust/Cargo update.
Diffstat (limited to 'servobuild.example')
-rw-r--r-- | servobuild.example | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/servobuild.example b/servobuild.example index 98dd8edaf9c..a328e24725e 100644 --- a/servobuild.example +++ b/servobuild.example @@ -40,8 +40,10 @@ debug-mozjs = false # Any optional flags that will be added to $RUSTFLAGS #rustflags = "" -# Enable rustc’s incremental compilation +# Enable or disable rustc’s incremental compilation +# The default is enabled in debug mode only. #incremental = false +#incremental = true # Whether to use ThinLTO or not #thinlto = false |