From 73f972cfba56f6367f0649d0a8316bef5889457a Mon Sep 17 00:00:00 2001 From: Valtameri Sieluna Date: Tue, 4 Mar 2025 12:06:56 +0200 Subject: [PATCH] Try fix install failure #480 (#481) * Try fix install failure * Update changelog * Let fmt happy --- CHANGELOG.md | 1 + src/toolchain/rust.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f5c875..af04487 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Return an error if GET request fails (#471) +- Fix RISC-V install fail (#480) ### Changed diff --git a/src/toolchain/rust.rs b/src/toolchain/rust.rs index 05c8375..f445678 100644 --- a/src/toolchain/rust.rs +++ b/src/toolchain/rust.rs @@ -373,7 +373,9 @@ impl Installable for RiscVTarget { "rust-src", "--target", "riscv32imc-unknown-none-elf", + "--target", "riscv32imac-unknown-none-elf", + "--target", "riscv32imafc-unknown-none-elf", ]) .stdout(Stdio::null())