Commit | Line | Data |
---|---|---|
f61f4dca PMF |
1 | LTT Viewing Tools package README |
2 | -------------------------------- | |
3 | Mathieu Desnoyers | |
4 | Last update: 2007/05/14 | |
5 | ||
6 | ||
7 | This package contains the trace reading library and trace viewing tools for | |
8 | the new Linux Trace Toolkit trace format. | |
9 | ||
10 | * Compiling | |
11 | ||
12 | gcc 3.2 or better | |
13 | gtk 2.4 or better development libraries | |
14 | (Debian : libgtk2.0, libgtk2.0-dev) | |
15 | (Fedora : gtk2, gtk2-devel) | |
16 | note : For Fedora users : this might require at least core 3 from Fedora, | |
17 | or you might have to compile your own GTK2 library. | |
18 | glib 2.4 or better development libraries | |
19 | (Debian : libglib2.0-0, libglib2.0-dev) | |
20 | (Fedora : glib2, glib2-devel) | |
21 | libpopt development libraries | |
22 | (Debian : libpopt0, libpopt-dev) | |
23 | (Fedora : popt) | |
24 | libpango development libraries | |
25 | (Debian : libpango1.0, libpango1.0-dev) | |
26 | (Fedora : pango, pango-devel) | |
27 | libc6 development librairies | |
28 | (Debian : libc6, libc6-dev) | |
29 | (Fedora : glibc, glibc) | |
30 | ||
31 | ||
32 | To compile the source tree from a tarball, simply follow these steps : | |
33 | ||
34 | - ./configure | |
35 | - make | |
36 | - make install | |
37 | ||
38 | After running ./configure, you can also go in specific subdirectories and | |
39 | use make, make install. | |
40 | ||
41 | ||
42 | * Quick Start | |
43 | ||
44 | See QUICKSTART. | |
45 | ||
46 | ||
47 | * Source Tree Structure | |
48 | ||
49 | Here is the tree structure of the Linux Trace Toolkit Viewer package. | |
50 | ||
51 | ltt/ New trace format reading library. | |
52 | README This file. | |
53 | debian/ Debian config files (currently empty). | |
54 | doc/ Documentation. | |
55 | doc/user/ User related documentation. | |
56 | doc/developer/ Developer related documentation. | |
57 | lttv/ Linux Trace Toolkit trace analysis tool and viewer. | |
58 | lttv/modules/ Linux Trace Toolkit analysis tool and viewer plugin modules. | |
59 | specs/ RPM config files (currently empty). | |
60 | ||
61 | ||
62 | * For Developers | |
63 | ||
64 | This source tree is based on the autotools suite from GNU to simplify | |
65 | portability. Here are some things you should have on your system in order to | |
66 | compile the subversion repository tree : | |
67 | ||
68 | ||
69 | - GNU autotools (automake >=1.7, autoconf >=2.50, autoheader >=2.50) | |
70 | (make sure your system wide "automake" points to a recent version!) | |
71 | - GNU Libtool | |
72 | (for more information, go to http://www.gnu.org/software/autoconf/) | |
73 | ||
74 | If you get the tree from the repository, you will need to use the autogen.sh | |
75 | script. It calls all the GNU tools needed to prepare the tree configuration. |