tmf: Bug 436376: CustomXML Trace Parser Undefined behaviour on closely
[deliverable/tracecompass.git] / README
1 This directory contains the source code for the LTTng integration plugins for
2 Eclipse, which includes the generic Tracing and Monitoring Framework (TMF).
3
4 The plugins are categorized as follows:
5 org.eclipse.linuxtools.ctf.* Common Trace Format (CTF) reader library
6 org.eclipse.linuxtools.gdbtrace.* Support for reading and viewing GDB traces
7 org.eclipse.linuxtools.lttng2.* LTTng 2.x integration
8 org.eclipse.linuxtools.tmf.* Tracing and Monitoring Framework
9 org.eclipse.linuxtools.tracing.rcp.* Code specific to the RCP version
10
11 See the plugins.svg file for a diagram showing the dependencies between the
12 different plugins.
13
14
15 To set up the environment to build TMF from within Eclipse, see this wiki page:
16 http://wiki.eclipse.org/Linux_Tools_Project/LTTng_Eclipse_Plug-in_Development_Environment_Setup
17
18
19
20
21 To build the plugins manually, first cd to the directory then invoke Maven:
22 $ cd lttng/
23 $ mvn clean install
24
25 The default command will compile and run the unit tests. Running the tests can
26 take some time, to skip them you can append "-Dmaven.test.skip=true" to the
27 'mvn' command:
28 $ mvn clean install -Dmaven.test.skip=true
29
30 The RCP is not built by default, to build it you need to add "-PtracingRcp" to
31 the 'mvn' command:
32 $ mvn clean install -PtracingRcp -Dmaven.test.skip=true
33
34 This will build the RCP for all supported architectures. The resulting archives
35 will be placed in lttng/org.eclipse.linuxtools.tracing.rcp.product/target/products
36
This page took 0.030556 seconds and 5 git commands to generate.