diff options
| author | kubycsolutions <keshlam@kubyc.solutions> | 2022-11-09 17:26:25 -0500 |
|---|---|---|
| committer | Keshlam (Joe Kesselman) <60112771+kubycsolutions@users.noreply.github.com> | 2022-11-10 19:37:09 -0500 |
| commit | b8edf0213e794a8bd58206bf66aee3fe81be4e60 (patch) | |
| tree | ca83f55b645c19cabfa3ad2fabbce447a3e85e0a /src/bootstrap | |
| parent | 0aaad9e757207657064d70bf9e6c1e6eb327bf15 (diff) | |
| download | rust-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 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/config.rs b/src/bootstrap/config.rs index ba50ce9ec24..2afce4fac42 100644 --- a/src/bootstrap/config.rs +++ b/src/bootstrap/config.rs @@ -781,7 +781,7 @@ impl Config { config.llvm_optimize = true; config.ninja_in_file = true; config.llvm_version_check = true; - config.llvm_static_stdcpp = true; + config.llvm_static_stdcpp = false; config.backtrace = true; config.rust_optimize = true; config.rust_optimize_tests = true; |
