Skip to content

Commit

Permalink
Auto merge of #60832 - petrochenkov:CLazy, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
CMake: Do not print installation messages for up-to-date files

Closes #60830
  • Loading branch information
bors committed May 15, 2019
2 parents f2951e6 + 3646b3c commit 7158ed9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/bootstrap/native.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
Expand Down

0 comments on commit 7158ed9

Please sign in to comment.