Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: install qemu #99

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions guide/source/0setup-devel-env.rst
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,10 @@ Qemu 模拟器安装

.. code-block:: bash

# 请注意,qemu-7.0.0 的父目录可以随着你的实际安装位置灵活调整
export PATH=$PATH:/home/shinbokuow/Downloads/built/qemu-7.0.0
export PATH=$PATH:/home/shinbokuow/Downloads/built/qemu-7.0.0/riscv64-softmmu
export PATH=$PATH:/home/shinbokuow/Downloads/built/qemu-7.0.0/riscv64-linux-user
# 请注意,qemu-7.0.0 的父目录和编译产出目录可以随着你的实际配置安装位置灵活调整
# 可以在 qemu-7.0.0 目录使用 echo $PWD 命令查看目录的绝对路径
# 按照上面的步骤进行编译,编译产出默认在 qemu-7.0.0 目录下的 ./build 目录
export PATH=$PATH:/path/to/your/qemu-7.0.0/build

随后即可在当前终端 ``source ~/.bashrc`` 更新系统路径,或者直接重启一个新的终端。

Expand Down