source: general/genlib/boost.xml@ bf565e06

11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since bf565e06 was b2651a58, checked in by Bruce Dubbs <bdubbs@…>, 17 months ago

Update to boost_1_81_0.

This package builds without issue, but 20 out of 167 tests fail when
python-3.11 is used. If python-3.10 is used, all tests pass. If
python is a symlink to python2 and the tests are run with that, all
tests pass.

  • Property mode set to 100644
File size: 7.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY boost-download-http "https://boostorg.jfrog.io/artifactory/main/release/&boost-version;/source/boost_&boost-dl-version;.tar.bz2">
8 <!ENTITY boost-download-ftp " ">
9 <!ENTITY boost-md5sum "3276c0637d1be8687740c550237ef999">
10 <!ENTITY boost-size "113 MB">
11 <!ENTITY boost-buildsize "1.1 GB (195 MB installed)">
12 <!ENTITY boost-time "1.4 SBU (Using parallelism=4; add 1.2 SBU for tests)">
13]>
14
15<!-- Editors: Check test failures with python-3.11 -->
16
17<sect1 id="boost" xreflabel="Boost-&boost-version;">
18 <?dbhtml filename="boost.html"?>
19
20
21 <title>Boost-&boost-version;</title>
22
23 <indexterm zone="boost">
24 <primary sortas="a-Boost">Boost</primary>
25 </indexterm>
26
27 <sect2 role="package">
28 <title>Introduction to Boost</title>
29
30 <para>
31 <application>Boost</application> provides a set of free peer-reviewed
32 portable C++ source libraries. It includes libraries for linear algebra,
33 pseudorandom number generation, multithreading, image processing, regular
34 expressions and unit testing.
35 </para>
36
37 &lfs112_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&boost-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&boost-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &boost-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &boost-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &boost-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &boost-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72 <!--
73 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
74 <itemizedlist spacing="compact">
75 <listitem>
76 <para>
77 Recommended patch, required to build <xref linkend="libreoffice"/>:
78 <ulink url="&patch-root;/boost-&boost-version;-gcc_10-1.patch"/>
79 </para>
80 </listitem>
81 </itemizedlist>
82 -->
83
84 <bridgehead renderas="sect3">Boost Dependencies</bridgehead>
85
86 <bridgehead renderas="sect4">Recommended</bridgehead>
87 <para role="recommended">
88 <xref linkend="which"/>
89 </para>
90
91 <bridgehead renderas="sect4">Optional</bridgehead>
92 <para role="optional">
93 <xref linkend="icu"/> and
94 <ulink url="https://www.open-mpi.org/">Open MPI</ulink>
95 </para>
96
97 <para condition="html" role="usernotes">User Notes:
98 <ulink url="&blfs-wiki;/boost"/>
99 </para>
100 </sect2>
101
102 <sect2 role="installation">
103 <title>Installation of Boost</title>
104
105 <para>
106 This package can be built with several jobs running in parallel. In
107 the instructions below, <parameter>&lt;N&gt;</parameter> stands for the
108 number of jobs. Install <application>Boost</application> by running the
109 following commands:
110 </para>
111
112
113<screen><userinput>./bootstrap.sh --prefix=/usr --with-python=python3 &amp;&amp;
114./b2 stage -j<replaceable>&lt;N&gt;</replaceable> threading=multi link=shared</userinput></screen>
115
116 <para>
117 To run the Boost.Build's regression test, issue
118 <command>pushd tools/build/test; python3 test_all.py; popd</command>.
119 With python-3.10.x all 168 tests should pass. With
120 <xref linkend='python3'/>, 20 tests fail for undetermined reasons.
121 </para>
122
123 <para>
124 To run every library's regression tests, issue <command>pushd status;
125 ../b2; popd</command>. A few tests may fail. They take a very long time
126 (over 119 SBU at -j4) and use a very large amount of disk space
127 (46 GB). You should use the <parameter>-jN</parameter> switch to
128 speed them up.
129 </para>
130
131 <note>
132 <para>
133 Boost installs many versioned directories in /usr/lib/cmake.
134 If a new version of <application>Boost</application> is installed over a
135 previous version, the older cmake directories need to be
136 explicitly removed. To do this, run as the
137 <systemitem class="username">root</systemitem> user:
138 </para>
139
140<screen role="root"><userinput>rm -rf /usr/lib/cmake/[Bb]oost*</userinput></screen>
141
142 <para>
143 before installing the new version.
144 </para>
145 </note>
146
147 <para>
148 Now, as the <systemitem class="username">root</systemitem> user:
149 </para>
150
151<!-- dev note: ./b2 - -prefix=<DESTDIR>/usr install threading=multi link=shared -->
152
153<screen role="root"><userinput>./b2 install threading=multi link=shared</userinput></screen>
154
155 </sect2>
156
157 <sect2 role="commands">
158 <title>Command Explanations</title>
159
160 <para>
161 <parameter>threading=multi</parameter>: This parameter ensures that
162 <application>Boost</application> is built with multithreading support.
163 </para>
164
165 <para>
166 <parameter>link=shared</parameter>: This parameter ensures that only
167 shared libraries are created, except for libboost_exception and
168 libboost_test_exec_monitor which are created as static. Most people
169 will not need the static libraries, and most programs using
170 <application>Boost</application> only use the headers. Omit
171 this parameter if you do need static libraries.
172 </para>
173
174 <para>
175 <parameter>--with-python=python3</parameter>: This switch ensures Python3
176 is used if Python2 is installed.
177 </para>
178
179 <para>
180 <option>-jN</option>: This switch may be added to the
181 <command>b2</command> command lines, to run up to N processes in
182 parallel.
183 </para>
184
185 </sect2>
186
187 <sect2 role="content">
188 <title>Contents</title>
189
190 <segmentedlist>
191 <segtitle>Installed Programs</segtitle>
192 <segtitle>Installed Libraries</segtitle>
193 <segtitle>Installed Directory</segtitle>
194
195 <seglistitem>
196 <seg>
197 None
198 </seg>
199 <seg>
200 libboost_atomic.so, libboost_chrono.so, libboost_container.so,
201 libboost_context.so, libboost_contract.so, libboost_coroutine.so,
202 libboost_date_time.so, libboost_exception.a, libboost_fiber.so,
203 libboost_filesystem.so, libboost_graph.so, libboost_iostreams.so,
204 libboost_json.so, libboost_locale.so,
205 libboost_log_setup.so, libboost_log.so, libboost_math_c99.so,
206 libboost_math_c99f.so, libboost_math_c99l.so, libboost_math_tr1.so,
207 libboost_math_tr1f.so, libboost_math_tr1l.so,
208 libboost_nowide.so, libboost_numpy39.so,
209 libboost_prg_exec_monitor.so, libboost_program_options.so,
210 libboost_python3&python3-minor;.so, libboost_random.so,
211 libboost_regex.so, libboost_serialization.so,
212 libboost_stacktrace_addr2line.so, libboost_stacktrace_basic.so,
213 libboost_stacktrace_noop.so, libboost_system.so,
214 libboost_test_exec_monitor.a, libboost_thread.so, libboost_timer.so,
215 libboost_type_erasure.so, libboost_unit_test_framework.so,
216 libboost_wave.so, and libboost_wserialization.so
217 </seg>
218 <seg>
219 /usr/include/boost
220 </seg>
221 </seglistitem>
222 </segmentedlist>
223
224 </sect2>
225
226</sect1>
Note: See TracBrowser for help on using the repository browser.