Skip to content

Commit ea3e9fb

Browse files
aobolenskallnes
andauthored
[doc] Fix qemu-riscv64 command line flag (#34866)
### Details: - riscv-collab toolchain uses updated flag for enabling vector extension (RVV) usage on qemu-riscv64 emulator ### Tickets: - N/A ### AI Assistance: - *AI assistance used: no* Co-authored-by: Nesterov Alexander <alexander.nesterov@intel.com>
1 parent 56784d1 commit ea3e9fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/dev/build_riscv64.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,12 @@ In order to test applications without hardware one can use emulation software. T
120120

121121
For example, to emulate RVV 0.7.1:
122122
```sh
123-
<riscv_toolchain_root>/bin/qemu-riscv64 -cpu rv64,x-v=true,vext_spec=v0.7.1 <executable_file_path>
123+
<riscv_toolchain_root>/bin/qemu-riscv64 -cpu rv64,v=true,vext_spec=v0.7.1 <executable_file_path>
124124
```
125125

126126
Or to emulate RVV 1.0:
127127
```sh
128-
<riscv_toolchain_root>/bin/qemu-riscv64 -cpu rv64,x-v=true,vext_spec=v1.0 <executable_file_path>
128+
<riscv_toolchain_root>/bin/qemu-riscv64 -cpu rv64,v=true,vext_spec=v1.0 <executable_file_path>
129129
```
130130

131131
## See also

0 commit comments

Comments
 (0)