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