Installation » History » Revision 3
Revision 2 (Sergey Smolov, 05/17/2018 01:34 PM) → Revision 3/36 (Sergey Smolov, 07/27/2018 02:31 PM)
h1. Installation The most preferable OS for QEMU4V _QEMU4V_ installation is *Linux*. Linux. To compile the QEMU4V QEMU the following Linux packages should be installed first: *glib-2.22*, *pixman-dev*, *flex*, *bison*, *pkg-config*. glib-2.22, pixman-dev, flex, bison, pkg-config. There are two ways to install QEMU4V: _QEMU4V_: from source tarball or from Git repository. h2. Install from source archive To install _QEMU4V_ on Linux host do the following: # Get source tarball from "here":http://forge.ispras.ru/projects/qemu4v/files. # Unpack the archive to the directory you want. # Enter the directory and do the following commands: <pre> ./configure --target-list=aarch64-softmmu,riscv64-softmmu --disable-capstone make sudo make install </pre> h2. Install from Git repository To install _QEMU4V_ on Linux host do the following: # Clone the project Git repository with the following command: command (it is supposed that you want to keep the source code in the @qemu4v@ directory): <pre> git clone https://forge.ispras.ru/git/qemu4v.git </pre> # Enter the @qemu4v@ project directory and switch to the branch that contains all the project enhancements: <pre> git checkout -b qemu4v.master origin/qemu4v.master </pre> # Do the following commands: <pre> ./configure --target-list=aarch64-softmmu,riscv64-softmmu --disable-capstone make sudo make install </pre>