From 4b803b211f765f6c6b18223e23670dbf754a980f Mon Sep 17 00:00:00 2001 From: John Paul Adrian Glaubitz Date: Sat, 29 May 2021 12:38:46 +0000 Subject: [PATCH 12/15] bootstrap: Disable initial-exec TLS model on powerpc Fixes #81334. diff --git a/src/bootstrap/src/core/builder/cargo.rs b/src/bootstrap/src/core/builder/cargo.rs index 0688a1d689..a57df11344 100644 --- a/src/bootstrap/src/core/builder/cargo.rs +++ b/src/bootstrap/src/core/builder/cargo.rs @@ -956,7 +956,7 @@ impl Builder<'_> { // efficient initial-exec TLS model. This doesn't work with `dlopen`, // so we can't use it by default in general, but we can use it for tools // and our own internal libraries. - if !mode.must_support_dlopen() && !target.triple.starts_with("powerpc-") { + if !mode.must_support_dlopen() && !target.triple.starts_with("powerpc-") && !target.triple.starts_with("powerpcle-") { cargo.env("RUSTC_TLS_MODEL_INITIAL_EXEC", "1"); }