summary refs log tree commit diff stats
path: root/results/classifier/accel-gemma3:12b/tcg/2486
blob: 1456bbc8c9ac3a150e2b7f6f1d7b428db38ae269 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
RISC-V Regression: QEMU_CPU=f=false,zfinx=true gives misleading error message
Description of problem:
The f extension looks like it should be toggle-able using qemu_cpu since it doesn't throw error messages when specified.
Disabling the extension using f=false does not actually disable it as shown by the zfinx error message.
Eg. Unsupported extension is explicitly rejected
```
> QEMU_CPU=rv64,j=false ./qemu-riscv64 test.out
qemu-riscv64: can't apply global rv64-riscv-cpu.j=false: Property 'rv64-riscv-cpu.j' not found
```
Steps to reproduce:
1. Compile any riscv binary like: `int main() {}`
2. Execute using `QEMU_CPU=rv64,zfinx=true,f=false ./qemu-riscv64 test.out`