为 ARM 编译 QEMU

Compiling QEMU for ARM

我正在编译 Compiling QEMU for ARM。参考以下 link :-- http://opensourceforu.efytimes.com/2011/06/qemu-for-embedded-systems-development-part-1/

我正在使用以下下载:--

http://download.savannah.gnu.org/releases/qemu/qemu-0.14.0.tar.gz

./configure –-target-list=arm-softmmu
$ make

Link 说:--

您会发现两个输出二进制文件,qemu-armqemu-system-arm

did not get qemu-arm binary but qemu-system-arm 产生了。

如何获取 qemu-arm 二进制文件?

像这样使用配置命令:

./configure --target-list=arm-softmmu,arm-linux-user

正如 unixsmurf 所指出的,您还应该使用新版本的 QEMU。