wsl中使用qemu模拟riscv平台

Posted by 婷 on March 29, 2025 本文总阅读量

简介

简单记录下qemu模拟riscv平台的过程,以前有模拟arm64平台的文章

qemu安装

首先安装qemu以及相关的软件

sudo apt-get install qemu-system-misc libncurses5-dev gcc-riscv64-linux-gnu build-essential bison flex libssl-dev

image-20250326215241624

编译代码

这里使用如下链接的代码

https://github.com/runninglinuxkernel/riscv_programming_practice/tree/master/chapter_2/benos

代码内容目录如下,sbi目录的代码编译出来是运行在M模式下的固件,为运行在S模式下的操作系统(这里是src目录的代码编译出来的镜像)提供引导和统一的

接口服务,业界流行的是用OPENSBI固件

image-20250326215335763

编译命令如下

export board=qemu
make clean
make

image-20250326215410856

qemu运行

在上一步的目录,执行命令make run即可用qemu把编译出来的riscvbaremental程序跑起来了

image-20250326215503159

qemu gdb调试

执行命令make debug即可让qemu进入debug模式

image-20250326215703911

然后再开一个终端,打开gdb终端

gdb-multiarch --tui /d/riscv_learn/benos/benos.elf

image-20250326215841285

image-20250326215918638

连接gdb的端口

target remote localhost:1234

image-20250326215944085

在程序开始的地方打断点

b _start

image-20250326220009344

运行

image-20250326220048948

如果想调试sbi.elf得退出前面占用的1234端口

gdb-multiarch --tui /d/riscv_learn/benos/mysbi.elf

image-20250326220240903