"--target list" means qemu install

I am new to qemu. I have the following question. I needed to emulate some new instructions using qemu. Basically I change target-i386 to something like target-i386-extended. Add tcg / i386-extended. Since qemu supports many architectures, I usually configure with the following command

./configure --target-list = i386-softmmu --enable-debug

to do

make installation

Are there any changes that need to be made if we want to emulate the new goal? If so, what should be the command in the above case?

We are looking forward to your reply.

+3


source to share


1 answer


./configure --help

      

shows a custom build and compile option.

Standard options:

  --help                   print this message

  --prefix=PREFIX          install in PREFIX [/usr/local]

  --interp-prefix=PREFIX   where to find shared libraries,
                           etc.use %M for cpu name [/usr/gnemul/qemu-%M]

      

--target-list=LIST set target list (default: build everything)

by default it will be created for all your targets like x86, x86_64, arm.powerpc etc.



./configure --target-list=i386-softmmu

this will build for x86 target only. If you only get the qemu-i386 binary.

if you want to use the target for the hand use

./configure --target-list=arm-softmmu

which will build and compile for hand only.

qemu-system-arm binaries you can use to emulate an ARM board

+4


source







All Articles