aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorAndy Green <andy.green@linaro.org>2012-10-06 12:51:05 +0800
committerAndy Green <andy.green@linaro.org>2012-10-06 12:51:05 +0800
commit7865c5bd9a6dca340b400b754b9d87e11d7367c2 (patch)
tree987dfb46470ce412d0d6f830facab5e2b1f0d0a1 /README
parentb8bd63c81b0082e40bb6d7ea59f0523abbab07a7 (diff)
introduce autotools libarmep
Signed-off-by: Andy Green <andy.green@linaro.org>
Diffstat (limited to 'README')
-rw-r--r--README48
1 files changed, 48 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..0ed94e7
--- /dev/null
+++ b/README
@@ -0,0 +1,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.
+
+