From 41c13826f89665a4cf05c2e7ae470cb38fc699bc Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Sun, 30 Aug 2020 22:40:16 -0400 Subject: [PATCH] Mention why you'd want codegen-units = 0 (other than running out of RAM) --- config.toml.example | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.toml.example b/config.toml.example index dd322c75932..2aba9445084 100644 --- a/config.toml.example +++ b/config.toml.example @@ -306,6 +306,9 @@ # #debug = false +# This will make your build more parallel; it costs a bit of runtime +# performance perhaps (less inlining) but it's worth it. +# # Number of codegen units to use for each compiler invocation. A value of 0 # means "the number of cores on this machine", and 1+ is passed through to the # compiler.