qemu 9.1.2 源码编译
qemu 9.1.2 源码编译
源码下载:
wget https://download.qemu.org/qemu-9.1.2.tar.xz
在我的虚拟机环境中需要安装 tomli
的 python
库
pip install tomli
源码编译
./configure --target-list=x86_64-softmmu,riscv64-softmmu,aarch64-softmmu --enable-slirp
make -j$(nproc)
配置路径
在 .bashrc
中设置路径
export PATH="$HOME/work/backup/qemu-9.1.2/build/:$PATH"
以上是 qemu
在我机器上的位置,根据自己的位置进行更改。
验证
ansen@ansen-virtual-machine:~/work/git/arceos$ qemu-system-riscv64 --version
QEMU emulator version 9.1.2
Copyright (c) 2003-2024 Fabrice Bellard and the QEMU Project developers