aboutsummaryrefslogtreecommitdiff
path: root/README
blob: 0ed94e7ec6a123d4b4ed354d40164735bfe01544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Building notes
2012-10-06  Andy Green <andy.green@linaro.org>

These sources are GPL2, you can find them here

http://git.linaro.org/gitweb?p=tools/arm-probe.git;a=summary


This probject uses GNU autotools.

Make sure you have 

 - libtool
 - automake
 - autoconf

packages installed.

To initially configure the sources for your system, or if you change the
autotools-related content:

 - ./autogen.sh
 - ./configure

You might want to use "./configure --prefix=/usr", which will later install
the built libraries and apps in /usr/bin, /usr/lib etc instead of the
default /usr/local/...   If you want to do that, notice that on 64-bit systems
(eg, on Fedora...) you will also need to give --libdir=/usr/lib64 which is
otherwise taken care of automatically.

afterwards, you can make as usual with

 - make
 - sudo make install

from the top level.


* libarmep is a library wrapping all of the access and protocol complexity
    of dealing with one or more arm energy probes

* arm-probe is the commandline utilty for the arm probes which issues
    output on stdout and adds columns on to stdin if anything is piped
    there.  The tabbed ascii format is compatible with gnuplot.  Actually
    the code for this is very small since libarmep copes with the dirty
    business.