source: general/genlib/boost.xml@ 41c36b3

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 41c36b3 was 33c9d33, checked in by Bruce Dubbs <bdubbs@…>, 9 years ago

Tags

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16390 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.2 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 "&sourceforge-repo;/boost/boost_&boost-dl-version;.tar.bz2">
8 <!ENTITY boost-download-ftp " ">
9 <!ENTITY boost-md5sum "6aa9a5c6a4ca1016edd0ed1178e3cb87">
10 <!ENTITY boost-size "68 MB">
11 <!ENTITY boost-buildsize "884 MB (additional 1 MB for Boost.Build's regression test)">
12 <!ENTITY boost-time "3.9 SBU (additional 1.5 SBU for Boost.Build's regression test)">
13]>
14
15<sect1 id="boost" xreflabel="Boost-&boost-version;">
16 <?dbhtml filename="boost.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Boost-&boost-version;</title>
24
25 <indexterm zone="boost">
26 <primary sortas="a-Boost">Boost</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Boost</title>
31
32 <para>
33 <application>Boost</application> provides a set of free peer-reviewed
34 portable C++ source libraries. It includes libraries for linear algebra,
35 pseudorandom number generation, multithreading, image processing, regular
36 expressions and unit testing.
37 </para>
38
39 &lfs78_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&boost-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&boost-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &boost-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &boost-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &boost-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &boost-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">Boost Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Optional</bridgehead>
78 <para role="optional">
79 <xref linkend="icu"/>,
80 <xref linkend="python2"/> and
81 <ulink url="https://www.open-mpi.org/">Open MPI</ulink>
82 </para>
83
84 <para condition="html" role="usernotes">User Notes:
85 <ulink url="&blfs-wiki;/boost"/>
86 </para>
87 </sect2>
88
89 <sect2 role="installation">
90 <title>Installation of Boost</title>
91
92 <para>
93 Install <application>Boost</application> by running the following
94 commands:
95 </para>
96
97<screen><userinput>sed -e '1 i#ifndef Q_MOC_RUN' \
98 -e '$ a#endif' \
99 -i boost/type_traits/detail/has_binary_operator.hpp &amp;&amp;
100
101./bootstrap.sh --prefix=/usr &amp;&amp;
102./b2 stage threading=multi link=shared</userinput></screen>
103
104 <para>
105 To run the Boost.Build's regression test (<xref linkend="python2"/>
106 required), issue <command>pushd tools/build/test; python test_all.py;
107 popd</command>. One test out of 130 fails.
108 </para>
109
110 <para>
111 To run every library's regression tests, issue <command>pushd status;
112 ../b2; popd</command>. A few tests may fail. They take very long (over
113 120/50 SBU, one/four cores) and use a very large disk space (up to
114 40 GB). You can use the <parameter>-jN</parameter> switch to
115 speed them up.
116 </para>
117
118 <para>
119 Now, as the <systemitem class="username">root</systemitem> user:
120 </para>
121
122<!-- dev note: ./b2 - -prefix=<DESTDIR>/usr install threading=multi link=shared -->
123
124<screen role="root"><userinput>./b2 install threading=multi link=shared</userinput></screen>
125
126 </sect2>
127
128 <sect2 role="commands">
129 <title>Command Explanations</title>
130
131 <para>
132 <command>sed ... has_binary_operator.hpp</command>: This command
133 fixes a header to overcome a problem with Qt's moc command. It
134 is necessary for building some KDE packages.
135 </para>
136
137 <para>
138 <parameter>threading=multi</parameter>: This parameter ensures that
139 <application>Boost</application> is built with multithreading support.
140 </para>
141
142 <para>
143 <parameter>link=shared</parameter>: This parameter ensures that only
144 shared libraries are created, except for libboost_exception and
145 libboost_test_exec_monitor which are created as static. Most people
146 will not need the static libraries. Indeed most programs using
147 <application>Boost</application> only use the headers. 0mit
148 this parameter if you do need static libraries.
149 </para>
150
151 <para>
152 <option>-jN</option>: This switch may be added to the
153 <command>b2</command> command lines, to run up to N processes in
154 parallel.
155 </para>
156
157 </sect2>
158
159 <sect2 role="content">
160 <title>Contents</title>
161
162 <segmentedlist>
163 <segtitle>Installed Programs</segtitle>
164 <segtitle>Installed Libraries</segtitle>
165 <segtitle>Installed Directory</segtitle>
166
167 <seglistitem>
168 <seg>
169 None
170 </seg>
171 <seg>
172 libboost_atomic.so, libboost_chrono.a, libboost_chrono.so,
173 libboost_container.so, libboost_context.so, libboost_coroutine.so,
174 libboost_date_time.so, libboost_exception.a, libboost_filesystem.so,
175 libboost_graph.so, libboost_iostreams.so, libboost_locale.so,
176 libboost_log_setup.so, libboost_log.so, libboost_math_c99.so,
177 libboost_math_c99f.so, libboost_math_c99l.so, libboost_math_tr1.so,
178 libboost_math_tr1f.so, libboost_math_tr1l.so,
179 libboost_prg_exec_monitor.so, libboost_program_options.so,
180 libboost_python.so, libboost_random.so, libboost_regex.so,
181 libboost_serialization.so, libboost_signals.so, libboost_system.a,
182 libboost_system.so, libboost_test_exec_monitor.a, libboost_thread.so,
183 libboost_timer.a, libboost_timer.so, libboost_unit_test_framework.so,
184 libboost_wave.so, and libboost_wserialization.so
185 </seg>
186 <seg>
187 /usr/include/boost
188 </seg>
189 </seglistitem>
190 </segmentedlist>
191
192 </sect2>
193
194</sect1>
Note: See TracBrowser for help on using the repository browser.