diff options
| author | Michael Goulet <michael@errs.io> | 2023-01-21 23:21:01 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-21 23:21:01 -0500 |
| commit | 1ac117b2846493f552b2ad189e9e57c8fd2d58ab (patch) | |
| tree | 10f6b28ce06abd7c108cef0588c0982ec0b1f2dd | |
| parent | 8a830cf182802179b7821b89193e64768519bd96 (diff) | |
| parent | f6d8abfcbfe2e2600f52bef27d8677febf72767a (diff) | |
| download | rust-1ac117b2846493f552b2ad189e9e57c8fd2d58ab.tar.gz rust-1ac117b2846493f552b2ad189e9e57c8fd2d58ab.zip | |
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```
| -rw-r--r-- | src/bootstrap/dist.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 68215790bed..2e4f753965d 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -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"); |
