about summary refs log tree commit diff
path: root/config.toml.example
diff options
context:
space:
mode:
authorkubycsolutions <keshlam@kubyc.solutions>2022-11-09 17:26:25 -0500
committerKeshlam (Joe Kesselman) <60112771+kubycsolutions@users.noreply.github.com>2022-11-10 19:37:09 -0500
commitb8edf0213e794a8bd58206bf66aee3fe81be4e60 (patch)
treeca83f55b645c19cabfa3ad2fabbce447a3e85e0a /config.toml.example
parent0aaad9e757207657064d70bf9e6c1e6eb327bf15 (diff)
downloadrust-b8edf0213e794a8bd58206bf66aee3fe81be4e60.tar.gz
rust-b8edf0213e794a8bd58206bf66aee3fe81be4e60.zip
Avoid runtime dependency on static libstdc++
Usually, we do want to use the static C++ library when building rustc_llvm, but do not want to have that dependency at compiler runtime. Change the defaults to Make It So.
Diffstat (limited to 'config.toml.example')
-rw-r--r--config.toml.example7
1 files changed, 4 insertions, 3 deletions
diff --git a/config.toml.example b/config.toml.example
index 2373fb2ec4f..c94a27b12a3 100644
--- a/config.toml.example
+++ b/config.toml.example
@@ -87,9 +87,10 @@ changelog-seen = 2
 # this flag will indicate that this version check should not be done.
 #version-check = true
 
-# Link libstdc++ statically into the rustc_llvm instead of relying on a
-# dynamic version to be available.
-#static-libstdcpp = true
+# When true, link libstdc++ statically into the rustc_llvm.
+# This is useful if you don't want to use the dynamic version of that
+# library provided by LLVM.
+#static-libstdcpp = false
 
 # Whether to use Ninja to build LLVM. This runs much faster than make.
 #ninja = true