Wiki » History » Version 3
Alexis Jeandet, 19/06/2014 12:27 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 | 3 | Alexis Jeandet | | {{thumbnail(ExeCut_Elf.png, size=300)}} | {{thumbnail(ExeCut_Symbols.png, size=300)}} | |
13 | 1 | Alexis Jeandet | |
14 | h2. To install it |
||
15 | |||
16 | h3. Prerequisites |
||
17 | |||
18 | 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! |
||
19 | |||
20 | * First you need a working linux machine with: |
||
21 | ** *Qt5 or Qt4 sdk* installed on it plus all the developments packages for Qt widgets. |
||
22 | ** *libelf* with headers. |
||
23 | |||
24 | h3. Building ExeCut |
||
25 | |||
26 | * To build ExeCut, you can get ExeCut source code from code repository with this command: |
||
27 | <pre><code class="bash"> |
||
28 | hg clone https://hephaistos.lpp.polytechnique.fr/rhodecode/HG_REPOSITORIES/LPP/INSTRUMENTATION/ExeCut ExeCut |
||
29 | </code></pre> |
||
30 | You will get a ExeCut directory with all the source code inside. To build it you just have to run: |
||
31 | <pre><code class="bash"> |
||
32 | cd ExeCut |
||
33 | qmake-qt5 # it works also with qt4(qmake-qt4) |
||
34 | 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). |
||
35 | |||
36 | </code></pre> |
||
37 | |||
38 | * Now you can install ExeCut, it will install the ExeCut and desktop icon in your system, just run: |
||
39 | <pre><code class="bash"> |
||
40 | sudo make install |
||
41 | </code></pre> |