之前有篇文章里面有写过关于图形界面的acvm的,这个软件是基于另外一个打好patch的qemu-system-aarch64,默认版本qemu是不支持macbook m1 平台的hvf的
本来不打算去了解这块怎么处理的,但是因为macOS 11.3 SDK 开始发生了变化,一个更新造成之前的软件里面的qemu-system-aarch64完全不能使用了,这个是mac内部的sdk发生了变化,所以qemu这里需要重打包,打上patch重新编译一个版本
本篇就是记录这个编译过程的,并且把相关的代码留存好一份
git clone https://git.qemu.org/git/qemu.git
cd qemu
git checkout 56a11a9b7580b576a9db930667be07f1dd1564d5
curl https://patchwork.kernel.org/series/418581/mbox/ | git am
mkdir build
cd build
../configure --target-list=aarch64-softmmu --enable-hvf --disable-gnutls
上面提示缺什么就用brew装什么就可以了
make -j 8
然后就弹出了下面的错误了
In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/new:93:
../version:1:1: error: expected unqualified-id
5.2.50
^
In file included from ../disas/arm-a64.cc:25:
In file included from /Volumes/normal-disk/myhost/newqemu/qemu/disas/libvixl/vixl/a64/disasm-a64.h:33:
In file included from /Volumes/normal-disk/myhost/newqe
…/version:1:1: error: expected unqualified-id这个就是因为sdk的改变引起的,我们修改下qemu的代码
修改这个文件vim …/meson.build
common_all = common_ss.apply(config_all, strict: false)
common_all = static_library('common',
build_by_default: false,
sources: common_all.sources() + genh,
dependencies: common_all.dependencies(),
name_suffix: 'fa')
feature_to_c = find_program('scripts/feature_to_c.sh')
为如下
common_all = common_ss.apply(config_all, strict: false)
common_all = static_library('common',
build_by_default: false,
sources: common_all.sources() + genh,
implicit_include_directories: false,
dependencies: common_all.dependencies(),
name_suffix: 'fa')
feature_to_c = find_program('scripts/feature_to_c.sh')
也就是添加了这个implicit_include_directories: false,
修改完了再次编译
make -j 8
就可以编译通过了,这个是可以运行的
编译完成后就生成了一个qemu-system-aarch64 文件,把qemu-img也取一下
这里我把修改好的代码备份一下,方便以后使用,二进制也放一起
https://www.aliyundrive.com/s/UaTMy7Vdstj
把上面编译好的,替换掉acvm里面源码里面的这两个二进制,重新打包acvm就可以了
这里也提供一个打好的acvm(后缀自己改下,分享类型限制)
https://www.aliyundrive.com/s/Pv9ntLFA6d3
如果不使用acvm,也可以借用acvm里面的一些文件,然后替换参数命令行启动也可以
命令行启动的
./Contents/Resources/qemu-system-aarch64 -M virt,highmem=no -accel hvf -cpu host -smp 2 -m 2G -bios ./Contents/Resources/QEMU_EFI.fd -device ramfb -device qemu-xhci -device usb-kbd -device usb-tablet -nic user,model=virtio -rtc base=localtime,clock=host -drive file=../ubuntu.qcow2,if=none,id=boot,cache=writethrough -device nvme,drive=boot,serial=boot -device intel-hda -device hda-duplex -drive file=../ubuntu-20.04.2-live-server-arm64.iso,media=cdrom,if=none,id=cdimage -device usb-storage,drive=cdimage
11.3的编译问题
https://patchew.org/QEMU/CA+pCdY09+OQfXq3YmRNuQE59ACOq7Py2q4hqOwgq4PnepCXhTA@mail.gmail.com/