about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2023-12-02 23:51:22 +0100
committerJakub Beránek <berykubik@gmail.com>2023-12-10 11:21:35 +0100
commit50865745e1aa3b6af6fe98d121ba68516fcce669 (patch)
treeeb508af933ef4ff26963e75075f49cc223a39d9f
parent40c3d351ada5d991f7474ecc4bc6c9b976c656cb (diff)
downloadrust-50865745e1aa3b6af6fe98d121ba68516fcce669.tar.gz
rust-50865745e1aa3b6af6fe98d121ba68516fcce669.zip
Update `config.example.toml`
-rw-r--r--config.example.toml8
1 files changed, 5 insertions, 3 deletions
diff --git a/config.example.toml b/config.example.toml
index 49c4ad4c958..b103e9890d2 100644
--- a/config.example.toml
+++ b/config.example.toml
@@ -648,10 +648,12 @@ change-id = 117813
 #lld = false
 
 # Indicates whether LLD will be used to link Rust crates during bootstrap on
-# supported platforms. The LLD from the bootstrap distribution will be used
-# and not the LLD compiled during the bootstrap.
+# supported platforms.
+# If set to `true` or `"external"`, a global `lld` binary that has to be in $PATH
+# will be used.
+# If set to `"self-contained"`, rust-lld from the snapshot compiler will be used.
 #
-# LLD will not be used if we're cross linking.
+# On MSVC, LLD will not be used if we're cross linking.
 #
 # Explicitly setting the linker for a target will override this option when targeting MSVC.
 #use-lld = false