diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs index 14c3ef79a78f2..59b87baa9df33 100644 --- a/src/bootstrap/compile.rs +++ b/src/bootstrap/compile.rs @@ -817,6 +817,13 @@ impl Step for Rustc { if compiler.stage != 0 { match builder.config.rust_lto { RustcLto::Thin | RustcLto::Fat => { + if target == "x86_64-pc-windows-msvc" { + panic!( + "(Thin)LTO is currently known to produce miscompilations on `x86_64-pc-windows-msvc`. \ +See https://github.com/rust-lang/rust/issues/109067." + ); + } + // Since using LTO for optimizing dylibs is currently experimental, // we need to pass -Zdylib-lto. cargo.rustflag("-Zdylib-lto");