Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
rustbuild/LLVM: Do not print installation messages for up-to-date files
  • Loading branch information
petrochenkov committed May 14, 2019
1 parent f59c71e commit 3646b3c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/bootstrap/native.rs
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 3646b3c

Please sign in to comment.