glfs/general/genlib/boost.xml
Douglas R. Reno bfbc72aa81 Tags
GDB: Mention the TUI test suite failing

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@24240 af4574ff-66df-0310-9fd7-8a98e5e911e0
2021-02-20 05:30:09 +00:00

234 lines
7.8 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY boost-download-http "https://dl.bintray.com/boostorg/release/&boost-version;/source/boost_&boost-dl-version;.tar.bz2">
<!ENTITY boost-download-ftp " ">
<!ENTITY boost-md5sum "ea217ed7c4414e93d44106c316966ae1">
<!ENTITY boost-size "116 MB">
<!ENTITY boost-buildsize "1.1 GB (175 MB installed)">
<!ENTITY boost-time "1.3 SBU (Using parallelism=4; add 1.3 SBU for tests)">
]>
<sect1 id="boost" xreflabel="Boost-&boost-version;">
<?dbhtml filename="boost.html"?>
<sect1info>
<othername>$LastChangedBy$</othername>
<date>$Date$</date>
</sect1info>
<title>Boost-&boost-version;</title>
<indexterm zone="boost">
<primary sortas="a-Boost">Boost</primary>
</indexterm>
<sect2 role="package">
<title>Introduction to Boost</title>
<para>
<application>Boost</application> provides a set of free peer-reviewed
portable C++ source libraries. It includes libraries for linear algebra,
pseudorandom number generation, multithreading, image processing, regular
expressions and unit testing.
</para>
&lfs101_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">
<listitem>
<para>
Download (HTTP): <ulink url="&boost-download-http;"/>
</para>
</listitem>
<listitem>
<para>
Download (FTP): <ulink url="&boost-download-ftp;"/>
</para>
</listitem>
<listitem>
<para>
Download MD5 sum: &boost-md5sum;
</para>
</listitem>
<listitem>
<para>
Download size: &boost-size;
</para>
</listitem>
<listitem>
<para>
Estimated disk space required: &boost-buildsize;
</para>
</listitem>
<listitem>
<para>
Estimated build time: &boost-time;
</para>
</listitem>
</itemizedlist>
<!--
<bridgehead renderas="sect3">Additional Downloads</bridgehead>
<itemizedlist spacing="compact">
<listitem>
<para>
Recommended patch, required to build <xref linkend="libreoffice"/>:
<ulink url="&patch-root;/boost-&boost-version;-gcc_10-1.patch"/>
</para>
</listitem>
</itemizedlist>
-->
<bridgehead renderas="sect3">Boost Dependencies</bridgehead>
<bridgehead renderas="sect4">Recommended</bridgehead>
<para role="recommended">
<xref linkend="which"/>
</para>
<bridgehead renderas="sect4">Optional</bridgehead>
<para role="optional">
<xref linkend="icu"/> and
<ulink url="https://www.open-mpi.org/">Open MPI</ulink>
</para>
<para condition="html" role="usernotes">User Notes:
<ulink url="&blfs-wiki;/boost"/>
</para>
</sect2>
<sect2 role="installation">
<title>Installation of Boost</title>
<!--
<para>
First, apply a patch wwhich allows to build libreoffice with GCC 10
and later:
</para>
<screen><userinput>patch -Np1 -i ../boost-&boost-version;-gcc_10-1.patch</userinput></screen>
-->
<para>
This package can be built with several jobs running in parallel. In
the instructions below, <parameter>&lt;N&gt;</parameter> stands for the
number of jobs. Install <application>Boost</application> by running the
following commands:
</para>
<screen><userinput>./bootstrap.sh --prefix=/usr --with-python=python3 &amp;&amp;
./b2 stage -j<replaceable>&lt;N&gt;</replaceable> threading=multi link=shared</userinput></screen>
<para>
To run the Boost.Build's regression test,
issue <command>pushd tools/build/test;
python3 test_all.py; popd</command>.
All 153 tests should pass.
</para>
<para>
To run every library's regression tests, issue <command>pushd status;
../b2; popd</command>. A few tests may fail. They take a very long time
(over 119 SBU at -j4) and use a very large amount of disk space
(46 GB). You should use the <parameter>-jN</parameter> switch to
speed them up.
</para>
<para>
Now, as the <systemitem class="username">root</systemitem> user:
</para>
<!-- dev note: ./b2 - -prefix=<DESTDIR>/usr install threading=multi link=shared -->
<screen role="root"><userinput>./b2 install threading=multi link=shared <!-- &amp;&amp;
ln -svf detail/sha1.hpp /usr/include/boost/uuid/sha1.hpp--></userinput></screen>
</sect2>
<sect2 role="commands">
<title>Command Explanations</title>
<para>
<parameter>threading=multi</parameter>: This parameter ensures that
<application>Boost</application> is built with multithreading support.
</para>
<para>
<parameter>link=shared</parameter>: This parameter ensures that only
shared libraries are created, except for libboost_exception and
libboost_test_exec_monitor which are created as static. Most people
will not need the static libraries, and most programs using
<application>Boost</application> only use the headers. Omit
this parameter if you do need static libraries.
</para>
<para>
<parameter>ln -svf detail/sha1.hpp ...</parameter>: The
<filename>uuid/sha1.hpp</filename> used to be a regular header, but by
boost_1_66_0 it had been changed to load the similar
<filename>detail/sha1.hpp</filename> header, with a message that it had
been deprecated. It has now been removed, but not every package which uses
it has been changed. An example is one of the libraries downloaded as a
git version by libreoffice. The symlink enables this and similar packages
to build.
</para>
<para>
<option>-jN</option>: This switch may be added to the
<command>b2</command> command lines, to run up to N processes in
parallel.
</para>
<para>
<option>--with-python=python3</option>: Add this switch to the <command>
bootstrap</command> command, if you want Boost
to use Python3 instead of Python2. Using Python3 is known to cause the
installation to fail on some systems.
</para>
</sect2>
<sect2 role="content">
<title>Contents</title>
<segmentedlist>
<segtitle>Installed Programs</segtitle>
<segtitle>Installed Libraries</segtitle>
<segtitle>Installed Directory</segtitle>
<seglistitem>
<seg>
None
</seg>
<seg>
libboost_atomic.so, libboost_chrono.so, libboost_container.so,
libboost_context.so, libboost_contract.so, libboost_coroutine.so,
libboost_date_time.so, libboost_exception.a, libboost_fiber.so,
libboost_filesystem.so,
libboost_graph.so, libboost_iostreams.so, libboost_locale.so,
libboost_log_setup.so, libboost_log.so, libboost_math_c99.so,
libboost_math_c99f.so, libboost_math_c99l.so, libboost_math_tr1.so,
libboost_math_tr1f.so, libboost_math_tr1l.so,
libboost_nowide.so,
libboost_prg_exec_monitor.so, libboost_program_options.so,
libboost_python3&python3-minor;.so, libboost_random.so,
libboost_regex.so, libboost_serialization.so,
libboost_stacktrace_addr2line.so, libboost_stacktrace_basic.so,
libboost_stacktrace_noop.so, libboost_system.so,
libboost_test_exec_monitor.a, libboost_thread.so, libboost_timer.so,
libboost_type_erasure.so, libboost_unit_test_framework.so,
libboost_wave.so, and libboost_wserialization.so
</seg>
<seg>
/usr/include/boost
</seg>
</seglistitem>
</segmentedlist>
</sect2>
</sect1>