1

在尝试按照http://riscv.org/getting-started.html#qemu中的说明安装 QEMU 时,运行以下命令时会出现 **"qemu-system-riscv: command not found"**error: qemu-system-riscv -hda [root.bin 的位置] -kernel [vmlinux 的位置] -nographic

我检查了 riscv-softmmu 目录,目录中有 qemu-system-riscv。

4

2 回答 2

0

Qemu 二进制文件在构建期间配置的目录中可用。以下是遵循的标准步骤。

  mkdir build
  cd build
  ../configure
  make

如果遵循上述标准步骤,则二进制文件位于build/riscv64-softmmu/

于 2018-04-26T10:38:45.717 回答
0

如果您没有将 risc-sofftmmu 目录添加到路径,请确保您是正确的

如果您尚未将文件夹添加到路径中,也请尝试使用 ./qemu-system-riscv

于 2015-10-25T14:52:40.660 回答