Reputation: 2777
I am compiling Compiling QEMU for ARM. taking into refrence following link :-- http://opensourceforu.efytimes.com/2011/06/qemu-for-embedded-systems-development-part-1/
I am using following download :--
http://download.savannah.gnu.org/releases/qemu/qemu-0.14.0.tar.gz
./configure –-target-list=arm-softmmu
$ make
Link says :--
You will find two output binaries, qemu-arm
and qemu-system-arm
I did not get
qemu-arm binary but
qemu-system-arm is produced.
How to get qemu-arm
binary ?
Upvotes: 3
Views: 4326
Reputation: 19975
Use the configure command like this:
./configure --target-list=arm-softmmu,arm-linux-user
As unixsmurf pointed out, you should also use a new version of QEMU.
Upvotes: 2