domain: add Python domain to list
[lttng-docs.git] / contents / using-lttng / instrumenting / advanced-techniques / 32-bit-on-64-bit / building-32-bit-lttng-tools.md
CommitLineData
5e0cbfb0
PP
1---
2id: building-32-bit-lttng-tools
3---
4
5Since the host is a 64-bit system, most 32-bit binaries and libraries of
47bfcb75 6LTTng-tools are not needed; the host uses their 64-bit counterparts.
5e0cbfb0
PP
7The required step here is building and installing a 32-bit consumer
8daemon.
9
10Follow this:
11
12<pre class="term">
13git clone http://git.lttng.org/lttng-tools.git
14cd lttng-ust
15./bootstrap
16./configure --prefix=/usr \
17 --libdir=/usr/lib32 CFLAGS=-m32 CXXFLAGS=-m32 \
18 LDFLAGS=-L/usr/lib32
19make
20cd src/bin/lttng-consumerd
21sudo make install
22sudo ldconfig
23</pre>
24
25The above commands build all the LTTng-tools project as 32-bit
26applications, but only installs the 32-bit consumer daemon.
This page took 0.023396 seconds and 4 git commands to generate.