Installation » History » Version 2
Sergey Smolov, 05/17/2018 01:34 PM
1 | 1 | Sergey Smolov | h1. Installation |
---|---|---|---|
2 | |||
3 | The most preferable OS for _QEMU4V_ installation is Linux. |
||
4 | To compile the QEMU the following Linux packages should be installed first: glib-2.22, pixman-dev, flex, bison, pkg-config. |
||
5 | |||
6 | There are two ways to install _QEMU4V_: from source tarball or from Git repository. |
||
7 | |||
8 | h2. Install from source archive |
||
9 | |||
10 | To install _QEMU4V_ on Linux host do the following: |
||
11 | |||
12 | # Get source tarball from "here":http://forge.ispras.ru/projects/qemu4v/files. |
||
13 | # Unpack the archive to the directory you want. |
||
14 | # Enter the directory and do the following commands: |
||
15 | <pre> |
||
16 | 2 | Sergey Smolov | ./configure --target-list=aarch64-softmmu,riscv64-softmmu --disable-capstone |
17 | 1 | Sergey Smolov | make |
18 | sudo make install |
||
19 | </pre> |
||
20 | |||
21 | h2. Install from Git repository |
||
22 | |||
23 | To install _QEMU4V_ on Linux host do the following: |
||
24 | |||
25 | # Clone the project Git repository with the following command (it is supposed that you want to keep the source code in the @qemu4v@ directory): |
||
26 | <pre> |
||
27 | git clone https://forge.ispras.ru/git/qemu4v.git |
||
28 | </pre> |
||
29 | # Enter the @qemu4v@ project directory and switch to the branch that contains all the project enhancements: |
||
30 | <pre> |
||
31 | git checkout -b qemu4v.master origin/qemu4v.master |
||
32 | </pre> |
||
33 | # Do the following commands: |
||
34 | <pre> |
||
35 | 2 | Sergey Smolov | ./configure --target-list=aarch64-softmmu,riscv64-softmmu --disable-capstone |
36 | 1 | Sergey Smolov | make |
37 | sudo make install |
||
38 | </pre> |