Skip to content

Commit 8b22e70

Browse files
committed
Auto merge of #45655 - alexcrichton:mips-less-cgus, r=michaelwoerister
rustbuild: Don't build with ThinLTO on MIPS Discovered in #45529 it looks like cross-module TLS imports aren't quite working today, especially with `hidden` visibility which mostly comes up with multiple codegen units. As a result this completely disables compiling with ThinLTO and multiple codegen units on MIPS when bootstrapping. cc #45654, the tracking issue for this
2 parents 6713736 + b1fd5a7 commit 8b22e70

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/bootstrap/builder.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -617,14 +617,16 @@ impl<'a> Builder<'a> {
617617
if self.is_very_verbose() {
618618
cargo.arg("-v");
619619
}
620-
// FIXME: cargo bench does not accept `--release`
621-
if self.config.rust_optimize && cmd != "bench" {
622-
cargo.arg("--release");
620+
if self.config.rust_optimize {
621+
// FIXME: cargo bench does not accept `--release`
622+
if cmd != "bench" {
623+
cargo.arg("--release");
624+
}
623625

624-
if mode != Mode::Libstd &&
626+
if mode != Mode::Libstd && // FIXME(#45320)
625627
self.config.rust_codegen_units.is_none() &&
626-
self.build.is_rust_llvm(compiler.host)
627-
628+
self.build.is_rust_llvm(compiler.host) &&
629+
!target.contains("mips") // FIXME(#45654)
628630
{
629631
cargo.env("RUSTC_THINLTO", "1");
630632
}

0 commit comments

Comments
 (0)