diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-05-14 21:33:22 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-05-15 01:36:18 +0300 |
| commit | 3646b3c3d9f60c0632668943ca65beb259d035f9 (patch) | |
| tree | 4225314728a85649b2fc8ef89c3c773868a0a75e | |
| parent | f59c71eb8ed808347c1e4245b842d673c75daeb6 (diff) | |
| download | rust-3646b3c3d9f60c0632668943ca65beb259d035f9.tar.gz rust-3646b3c3d9f60c0632668943ca65beb259d035f9.zip | |
rustbuild/LLVM: Do not print installation messages for up-to-date files
| -rw-r--r-- | src/bootstrap/native.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs index 5777331b9bf..da2e03a1a08 100644 --- a/src/bootstrap/native.rs +++ b/src/bootstrap/native.rs @@ -317,6 +317,10 @@ fn check_llvm_version(builder: &Builder<'_>, llvm_config: &Path) { fn configure_cmake(builder: &Builder<'_>, target: Interned<String>, cfg: &mut cmake::Config) { + // Do not print installation messages for up-to-date files. + // LLVM and LLD builds can produce a lot of those and hit CI limits on log size. + cfg.define("CMAKE_INSTALL_MESSAGE", "LAZY"); + if builder.config.ninja { cfg.generator("Ninja"); } |
