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