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