PKGBUILDs/extra/rust/0003-compiler-Change-LLVM-targets.patch

85 lines
4 KiB
Diff
Raw Normal View History

2021-05-07 00:05:08 +00:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2023-07-16 14:54:25 +00:00
From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
2021-05-07 00:05:08 +00:00
Date: Fri, 12 Mar 2021 17:31:56 +0100
Subject: [PATCH] compiler: Change LLVM targets
- Change x86_64-unknown-linux-gnu to use x86_64-pc-linux-gnu
- Change i686-unknown-linux-gnu to use i686-pc-linux-gnu
Reintroduce the aliasing that was removed in 1.52.0 and alias the -pc-
triples to the -unknown- triples. This avoids defining proper -pc-
targets, as things break when this is done:
- The crate ecosystem expects the -unknown- targets. Making -pc-
rustc's host triple (and thus default target) would break various
crates.
- Firefox's build breaks when the host triple (from
`rustc --version --verbose`) is different from the target triple
(from `rustc --print target-list`) that best matches autoconf.
---
compiler/rustc_session/src/config.rs | 2 +-
compiler/rustc_target/src/spec/mod.rs | 9 +++++++++
2024-01-03 02:00:18 +00:00
.../src/spec/targets/i686_unknown_linux_gnu.rs | 2 +-
.../src/spec/targets/x86_64_unknown_linux_gnu.rs | 2 +-
2021-05-07 00:05:08 +00:00
4 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/compiler/rustc_session/src/config.rs b/compiler/rustc_session/src/config.rs
2024-02-10 17:11:03 +00:00
index 0c21e4eb43e7..6f294790cdbb 100644
2021-05-07 00:05:08 +00:00
--- a/compiler/rustc_session/src/config.rs
+++ b/compiler/rustc_session/src/config.rs
2024-02-10 17:11:03 +00:00
@@ -2255,7 +2255,7 @@ pub fn parse_target_triple(early_dcx: &EarlyDiagCtxt, matches: &getopts::Matches
early_dcx.early_error(format!("target file {path:?} does not exist"))
2021-05-07 00:05:08 +00:00
})
}
- Some(target) => TargetTriple::TargetTriple(target),
+ Some(target) => TargetTriple::from_alias(target),
_ => TargetTriple::from_triple(host_triple()),
}
}
diff --git a/compiler/rustc_target/src/spec/mod.rs b/compiler/rustc_target/src/spec/mod.rs
2024-02-10 17:11:03 +00:00
index b688c97311a0..bd8a5a7f43b2 100644
2021-05-07 00:05:08 +00:00
--- a/compiler/rustc_target/src/spec/mod.rs
+++ b/compiler/rustc_target/src/spec/mod.rs
2024-02-10 17:11:03 +00:00
@@ -3485,6 +3485,15 @@ pub fn from_path(path: &Path) -> Result<Self, io::Error> {
2022-08-11 23:28:20 +00:00
Ok(TargetTriple::TargetJson { path_for_rustdoc: canonicalized_path, triple, contents })
2021-05-07 00:05:08 +00:00
}
+ /// Creates a target triple from its alias
+ pub fn from_alias(triple: String) -> Self {
+ match triple.as_str() {
+ "x86_64-pc-linux-gnu" => TargetTriple::from_triple("x86_64-unknown-linux-gnu"),
+ "i686-pc-linux-gnu" => TargetTriple::from_triple("i686-unknown-linux-gnu"),
+ _ => TargetTriple::TargetTriple(triple),
+ }
+ }
+
/// Returns a string triple for this target.
///
/// If this target is a path, the file name (without extension) is returned.
2024-01-03 02:00:18 +00:00
diff --git a/compiler/rustc_target/src/spec/targets/i686_unknown_linux_gnu.rs b/compiler/rustc_target/src/spec/targets/i686_unknown_linux_gnu.rs
2024-02-10 17:11:03 +00:00
index 3b7be48dbbc5..c23015e447ff 100644
2024-01-03 02:00:18 +00:00
--- a/compiler/rustc_target/src/spec/targets/i686_unknown_linux_gnu.rs
+++ b/compiler/rustc_target/src/spec/targets/i686_unknown_linux_gnu.rs
@@ -9,7 +9,7 @@ pub fn target() -> Target {
2024-02-10 17:11:03 +00:00
base.stack_probes = StackProbeType::Inline;
2024-01-03 02:00:18 +00:00
Target {
- llvm_target: "i686-unknown-linux-gnu".into(),
+ llvm_target: "i686-pc-linux-gnu".into(),
pointer_width: 32,
data_layout: "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
f64:32:64-f80:32-n8:16:32-S128"
diff --git a/compiler/rustc_target/src/spec/targets/x86_64_unknown_linux_gnu.rs b/compiler/rustc_target/src/spec/targets/x86_64_unknown_linux_gnu.rs
2024-02-10 17:11:03 +00:00
index bf10f7e5d2de..c3f702f6df9e 100644
2024-01-03 02:00:18 +00:00
--- a/compiler/rustc_target/src/spec/targets/x86_64_unknown_linux_gnu.rs
+++ b/compiler/rustc_target/src/spec/targets/x86_64_unknown_linux_gnu.rs
2023-08-29 12:52:41 +00:00
@@ -17,7 +17,7 @@ pub fn target() -> Target {
2023-04-24 12:47:24 +00:00
base.supports_xray = true;
2021-05-07 00:05:08 +00:00
Target {
2022-05-19 18:54:59 +00:00
- llvm_target: "x86_64-unknown-linux-gnu".into(),
+ llvm_target: "x86_64-pc-linux-gnu".into(),
2021-05-07 00:05:08 +00:00
pointer_width: 64,
data_layout: "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
2022-05-19 18:54:59 +00:00
.into(),