Wiki » History » Version 5
Alexis Jeandet, 19/06/2014 12:32 AM
1 | 1 | Alexis Jeandet | h1. ExeCut |
---|---|---|---|
2 | |||
3 | {{>toc}} |
||
4 | |||
5 | Child pages: |
||
6 | {{child_pages}} |
||
7 | |||
8 | "Source code":https://hephaistos.lpp.polytechnique.fr/rhodecode/HG_REPOSITORIES/LPP/INSTRUMENTATION/ExeCut |
||
9 | |||
10 | h2. Preview |
||
11 | |||
12 | 5 | Alexis Jeandet | table(noborder){width: 700px;text-align: center;}. |
13 | 4 | Alexis Jeandet | | {{thumbnail(ExeCut_Elf.png, size=400)}} | {{thumbnail(ExeCut_Symbols.png, size=400)}} | |
14 | 1 | Alexis Jeandet | |
15 | h2. To install it |
||
16 | |||
17 | h3. Prerequisites |
||
18 | |||
19 | All the next steps can be distribution dependent ExeCut development is done on Fedora 19 and 20, but is should work with any other one, feedback are welcome! |
||
20 | |||
21 | * First you need a working linux machine with: |
||
22 | ** *Qt5 or Qt4 sdk* installed on it plus all the developments packages for Qt widgets. |
||
23 | ** *libelf* with headers. |
||
24 | |||
25 | h3. Building ExeCut |
||
26 | |||
27 | * To build ExeCut, you can get ExeCut source code from code repository with this command: |
||
28 | <pre><code class="bash"> |
||
29 | hg clone https://hephaistos.lpp.polytechnique.fr/rhodecode/HG_REPOSITORIES/LPP/INSTRUMENTATION/ExeCut ExeCut |
||
30 | </code></pre> |
||
31 | You will get a ExeCut directory with all the source code inside. To build it you just have to run: |
||
32 | <pre><code class="bash"> |
||
33 | cd ExeCut |
||
34 | qmake-qt5 # it works also with qt4(qmake-qt4) |
||
35 | make #note that to speedup the make step you can use "make -j N" to parallelize on N process(replace N with the number of cores you have). |
||
36 | |||
37 | </code></pre> |
||
38 | |||
39 | * Now you can install ExeCut, it will install the ExeCut and desktop icon in your system, just run: |
||
40 | <pre><code class="bash"> |
||
41 | sudo make install |
||
42 | </code></pre> |