On 11/16/21 11:53 AM, Peter Maydell wrote:
cpu = host_machine.cpu_family() + +# Unify riscv* to a single family. +if cpu in ['riscv32', 'riscv64'] + cpu = 'riscv' +endifNeeding to do this seems kinda awkward :-(
Yeah, well. It's either once here, or multiple times later.Or, we admit that riscv32 will never be supported as a host and rename all of our other bits (tcg/riscv and */host/riscv/) to riscv64.
r~