Try fix install failure #480 (#481)

* Try fix install failure

* Update changelog

* Let fmt happy
This commit is contained in:
Valtameri Sieluna 2025-03-04 12:06:56 +02:00 committed by GitHub
parent 8d0109e21c
commit 73f972cfba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Return an error if GET request fails (#471) - Return an error if GET request fails (#471)
- Fix RISC-V install fail (#480)
### Changed ### Changed

View File

@ -373,7 +373,9 @@ impl Installable for RiscVTarget {
"rust-src", "rust-src",
"--target", "--target",
"riscv32imc-unknown-none-elf", "riscv32imc-unknown-none-elf",
"--target",
"riscv32imac-unknown-none-elf", "riscv32imac-unknown-none-elf",
"--target",
"riscv32imafc-unknown-none-elf", "riscv32imafc-unknown-none-elf",
]) ])
.stdout(Stdio::null()) .stdout(Stdio::null())