3

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 ?

Katoch
  • 2,709
  • 9
  • 51
  • 84

1 Answers1

2

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.

unixsmurf
  • 5,852
  • 1
  • 33
  • 40
Richard Pennington
  • 19,673
  • 4
  • 43
  • 72