On Wed, 14 Sep 2016 15:09:52 +0300 Utku Gültopu <ugult...@gmail.com> wrote:
> Sorry for this very basic question but I wanted to make sure I am doing this > correct. > Hi, > If I want to build QEMU’s latest stable version (instead of the latest > development version), am I supposed to follow the following command line > sequence? > > git clone git://git.qemu-project.org/qemu.git cd qemu ;) > git checkout stable-2.6 > mkdir build > cd build > ../configure > make > > Best regards This is correct, but it will build all the targets and may take some time. If you need fewer targets or even one, you can pass the --target-list option to configure (see configure --help for the full list). Cheers. -- Greg