Project

General

Profile

Actions

Installation » History » Revision 2

« Previous | Revision 2/36 (diff) | Next »
Sergey Smolov, 05/17/2018 01:34 PM


Installation

The most preferable OS for QEMU4V installation is Linux.
To compile the QEMU the following Linux packages should be installed first: glib-2.22, pixman-dev, flex, bison, pkg-config.

There are two ways to install QEMU4V: from source tarball or from Git repository.

Install from source archive

To install QEMU4V on Linux host do the following:

  1. Get source tarball from here.
  2. Unpack the archive to the directory you want.
  3. Enter the directory and do the following commands:
    ./configure --target-list=aarch64-softmmu,riscv64-softmmu --disable-capstone
    make
    sudo make install
    

Install from Git repository

To install QEMU4V on Linux host do the following:

  1. Clone the project Git repository with the following command (it is supposed that you want to keep the source code in the qemu4v directory):
    git clone https://forge.ispras.ru/git/qemu4v.git
    
  2. Enter the qemu4v project directory and switch to the branch that contains all the project enhancements:
    git checkout -b qemu4v.master origin/qemu4v.master
    
  3. Do the following commands:
    ./configure --target-list=aarch64-softmmu,riscv64-softmmu --disable-capstone
    make
    sudo make install
    

Updated by Sergey Smolov almost 6 years ago · 2 revisions