家里曾买了一台逸珑2F,也是龙芯cpu,然并非LoongArch架构。要尝鲜LoongArch的开发环境,只有虚拟机方案,qemu可以在x64 win10上模拟LoongArch的虚拟机。
一、软件准备
1、下载QEMU7.2,地址:https://qemu.weilnetz.de/w64/qemu-w64-setup-20221230.exe
2、下载引导固件,地址:https://mirrors.wsyu.edu.cn/loongarch/archlinux/images/QEMU_EFI_7.2.fd
3、下载loongnix社区预制系统,地址:http://pkg.loongnix.cn/loongnix/isos/Loongnix-20.3/Loongnix-20.3.mate.gui.loongarch64.cn.qcow2
二、虚拟机配置
1、我将QEMU7.2安装到D:/app/qemu。
2、将QEMU_EFI_7.2.fd和Loongnix-20.3.mate.gui.loongarch64.cn.qcow2文件放到了D:/app/LoongArch目录。
3、新建startup.bat脚本,为了博客\换行好看,实际脚本要将\换行去掉,直接用一行脚本,双击脚本启动,系统密码是 Loongson20 。
D: cd D:\app\LoongArch D:/app/qemu/qemu-system-loongarch64 -m 8G -cpu la464-loongarch-cpu \ -machine virt -smp 4 -bios ./QEMU_EFI_7.2.fd -serial stdio \ -device virtio-gpu-pci -net nic -net user \ -device nec-usb-xhci,id=xhci,addr=0x1b \ -device usb-tablet,id=tablet,bus=xhci.0,port=1 \ -device usb-kbd,id=keyboard,bus=xhci.0,port=2 \ -hda ./Loongnix-20.3.mate.gui.loongarch64.cn.qcow2
三、安装Qt5 SDK及IDE
su root apt install gcc g++ gdb git qtdeclarative5-dev qtbase5-private-dev \ qtdeclarative5-private-dev libqt5opengl5-dev qtwebengine5-private-dev \ qtwebengine5-dev qtscript5-dev qtquickcontrols2-5-dev qtcreator
标签:Qt5,cn,虚拟机,dev,20.3,Win10,qemu,LoongArch From: https://www.cnblogs.com/airscrat/p/17142185.html