Project

General

Profile

Wiki » History » Version 16

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