Skip to content

Commit 3646b3c

Browse files
committed
rustbuild/LLVM: Do not print installation messages for up-to-date files
1 parent f59c71e commit 3646b3c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/bootstrap/native.rs

+4
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,10 @@ fn check_llvm_version(builder: &Builder<'_>, llvm_config: &Path) {
317317
fn configure_cmake(builder: &Builder<'_>,
318318
target: Interned<String>,
319319
cfg: &mut cmake::Config) {
320+
// Do not print installation messages for up-to-date files.
321+
// LLVM and LLD builds can produce a lot of those and hit CI limits on log size.
322+
cfg.define("CMAKE_INSTALL_MESSAGE", "LAZY");
323+
320324
if builder.config.ninja {
321325
cfg.generator("Ninja");
322326
}

0 commit comments

Comments
 (0)