You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When reading the release notes of Rust 1.96, I noticed that the riscv64gc-unknown-fuchsia target recently changed its baseline from rv64gc to rva22+v in PR #155072. This raises two concerns:
The riscv64gc- triple prefix implies a baseline of mandatory extensions in the RISC-V RVA20 profile. Promoting the baseline to RVA22+Vector while keeping the triple prefix is probably misleading.
When reading the release notes of Rust 1.96, I noticed that the
riscv64gc-unknown-fuchsiatarget recently changed its baseline fromrv64gctorva22+vin PR #155072. This raises two concerns:+v,. This change does not include any mandatory extension by the RVA22 profile, but only an optional extension: vector.As a reference, here are the longer ISA strings of RVA20 and RVA22:
--
cc @dramforever