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())