Initial import
[lttng-docs.git] / contents / using-lttng / instrumenting / advanced-techniques / 32-bit-on-64-bit / building-32-bit-lttng-ust.md
CommitLineData
5e0cbfb0
PP
1---
2id: building-32-bit-lttng-ust
3---
4
5Follow this:
6
7<pre class="term">
8git clone http://git.lttng.org/lttng-ust.git
9cd lttng-ust
10./bootstrap
11./configure --prefix=/usr \
12 --libdir=/usr/lib32 \
13 CFLAGS=-m32 CXXFLAGS=-m32 \
14 LDFLAGS=-L/usr/lib32
15make
16sudo make install
17sudo ldconfig
18</pre>
19
20`-L/usr/lib32` is required for the build to find the 32-bit version
21of Userspace RCU.
22
23<div class="tip">
24<p>
25 <span class="t">Note:</span>You may add options to
26 <code>./configure</code> if you need them, e.g., for
27 Java and SystemTap support. Look at
28 <code>./configure --help</code> for more information.
29</p>
30</div>
This page took 0.023011 seconds and 4 git commands to generate.