From b47aa1b34d395d73686468beea09d87f7ae9906d Mon Sep 17 00:00:00 2001 From: est31 Date: Fri, 12 May 2017 13:29:08 +0200 Subject: [PATCH] config.toml.example: add note that optimize = false won't speed up a full bootstrap --- src/bootstrap/config.toml.example | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bootstrap/config.toml.example b/src/bootstrap/config.toml.example index 0309eca0e5d..25da976a555 100644 --- a/src/bootstrap/config.toml.example +++ b/src/bootstrap/config.toml.example @@ -175,6 +175,9 @@ [rust] # Whether or not to optimize the compiler and standard library +# Note: the slowness of the non optimized compiler compiling itself usually +# outweighs the time gains in not doing optimizations, therefore a +# full bootstrap takes much more time with optimize set to false. #optimize = true # Number of codegen units to use for each compiler invocation. A value of 0 -- 2.44.0