c643c1ad681791b678daf5bcac7d8dc30c78b373
[lttng-docs.git] / contents / using-lttng / instrumenting / advanced-techniques / 32-bit-on-64-bit / building-64-bit-lttng-tools.md
1 ---
2 id: building-64-bit-lttng-tools
3 ---
4
5 Finally, you need to build a 64-bit version of LTTng-tools which is
6 aware of the 32-bit consumer daemon previously built and installed:
7
8 <pre class="term">
9 make clean
10 ./bootstrap
11 ./configure --prefix=/usr \
12 --with-consumerd32-libdir=/usr/lib32 \
13 --with-consumerd32-bin=/usr/lib32/lttng/libexec/lttng-consumerd
14 make
15 sudo make install
16 sudo ldconfig
17 </pre>
18
19 Henceforth, the 64-bit session daemon will automatically find the
20 32-bit consumer daemon if required.
This page took 0.04497 seconds and 3 git commands to generate.