From 96dc0c89e7d55decf81d4684cf821e1cb70f630f Mon Sep 17 00:00:00 2001 From: David Abdurachmanov Date: Wed, 11 Jan 2023 16:35:44 +0000 Subject: [PATCH] Enable rust-analyzer for riscv64 This is a test. Might not work. Testing to provide feedback on GitHub: https://github.com/rust-lang/rust/pull/75103 Signed-off-by: David Abdurachmanov --- enable-ra-for-riscv.patch | 16 ++++++++++++++++ rust.spec | 14 ++++++++++---- 2 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 enable-ra-for-riscv.patch diff --git a/enable-ra-for-riscv.patch b/enable-ra-for-riscv.patch new file mode 100644 index 0000000..7d768b5 --- /dev/null +++ b/enable-ra-for-riscv.patch @@ -0,0 +1,16 @@ +diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs +index 12585e80e..f7b882880 100644 +--- a/src/bootstrap/dist.rs ++++ b/src/bootstrap/dist.rs +@@ -1085,11 +1085,6 @@ impl Step for RustAnalyzer { + fn run(self, builder: &Builder<'_>) -> Option { + let compiler = self.compiler; + let target = self.target; +- +- if target.contains("riscv64") { +- // riscv64 currently has an LLVM bug that makes rust-analyzer unable +- // to build. See #74813 for details. +- return None; + } + + let rust_analyzer = builder diff --git a/rust.spec b/rust.spec index 3711710..7cfe300 100644 --- a/rust.spec +++ b/rust.spec @@ -88,7 +88,7 @@ Name: rust Version: 1.66.0 -Release: 1.0.riscv64%{?dist} +Release: 1.1.riscv64%{?dist} Summary: The Rust Programming Language License: (ASL 2.0 or MIT) and (BSD and MIT) # ^ written as: (rust itself) and (bundled libraries) @@ -135,6 +135,9 @@ Patch101: rustc-1.65.0-disable-http2.patch # (affects RHEL6 kernels when building for RHEL7) Patch102: rustc-1.65.0-no-default-pie.patch +# Enable rust-analyzer on riscv64 +Patch103: enable-ra-for-riscv.patch + # Get the Rust triple for any arch. %{lua: function rust_triple(arch) @@ -610,6 +613,8 @@ rm -rf vendor/libnghttp2-sys/ %patch102 -p1 %endif +%patch103 -p1 + # Use our explicit python3 first sed -i.try-python -e '/^try python3 /i try "%{__python3}" "$@"' ./configure @@ -1032,9 +1037,7 @@ end} %files analyzer %{_bindir}/rls -%ifnarch riscv64 %{_bindir}/rust-analyzer -%endif %doc src/tools/rust-analyzer/README.md %license src/tools/rust-analyzer/LICENSE-{APACHE,MIT} @@ -1062,7 +1065,10 @@ end} %changelog -* Tue Jan 10 2022 David Abdurachmanov - 1.66.0-1.0.riscv64 +* Wed Jan 11 2022 David Abdurachmanov - 1.66.0-1.1.riscv64 +- Enable riscv-analyzer for riscv64 + +* Tue Jan 09 2022 David Abdurachmanov - 1.66.0-1.0.riscv64 - Do not package rust-analyzer on riscv64 - Enable riscv64