Fix patch syntax error

Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
This commit is contained in:
David Abdurachmanov 2023-01-11 17:11:22 +00:00
parent 96dc0c89e7
commit d2549134a9
Signed by: davidlt
GPG Key ID: 8B7F1DA0E2C9FDBB
1 changed files with 7 additions and 6 deletions

View File

@ -1,16 +1,17 @@
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs
index 12585e80e..f7b882880 100644
index 12585e80e..360b7b6c7 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<GeneratedTarball> {
@@ -1086,12 +1086,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");