Rollup merge of #107015 - cuviper:ra-riscv64, r=Mark-Simulacrum

Re-enable building rust-analyzer on riscv64

It was disabled in #75103 due to an LLVM bug, but followup comments have
confirmed that it builds fine on Fedora with LLVM 15.

r? ```@Mark-Simulacrum```
cc ```@matklad``` ```@davidlt```
This commit is contained in:
Michael Goulet 2023-01-21 23:21:01 -05:00 committed by GitHub
commit 1ac117b284
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1130,12 +1130,6 @@ impl Step for RustAnalyzer {
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
.ensure(tool::RustAnalyzer { compiler, target })
.expect("rust-analyzer always builds");