diff options
| author | Josh Stone <jistone@redhat.com> | 2023-01-17 18:15:54 -0800 |
|---|---|---|
| committer | Josh Stone <jistone@redhat.com> | 2023-01-17 18:15:54 -0800 |
| commit | f6d8abfcbfe2e2600f52bef27d8677febf72767a (patch) | |
| tree | 454b96adf20242e5758dfe748f114c611e621642 | |
| parent | 3984bc5833db8bfb0acc522c9775383e4171f3de (diff) | |
| download | rust-f6d8abfcbfe2e2600f52bef27d8677febf72767a.tar.gz rust-f6d8abfcbfe2e2600f52bef27d8677febf72767a.zip | |
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.
| -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"); |
