source: general/genlib/boost.xml@ 684ab13

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 684ab13 was 684ab13, checked in by Fernando de Oliveira <fernando@…>, 9 years ago

Update to boost-1.58.0.

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

  • Property mode set to 100644
File size: 6.0 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 "b8839650e61e9c1c0a89f371dd475546">
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 &lfs77_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"/> and
80 <xref linkend="python2"/>
81 </para>
82
83 <para condition="html" role="usernotes">User Notes:
84 <ulink url="&blfs-wiki;/boost"/>
85 </para>
86 </sect2>
87
88 <sect2 role="installation">
89 <title>Installation of Boost</title>
90
91 <para>
92 Install <application>Boost</application> by running the following
93 commands:
94 </para>
95
96<screen><userinput>sed -e '1 i#ifndef Q_MOC_RUN' \
97 -e '$ a#endif' \
98 -i boost/type_traits/detail/has_binary_operator.hpp &amp;&amp;
99
100./bootstrap.sh --prefix=/usr &amp;&amp;
101./b2 stage threading=multi link=shared</userinput></screen>
102
103 <para>
104 To run the Boost.Build's regression test (<xref linkend="python2"/>
105 required), issue <command>pushd tools/build/test; python test_all.py;
106 popd</command>.
107 </para>
108
109 <para>
110 To run every library's regression tests, issue <command>pushd status;
111 ../b2; popd</command>. A few tests may fail. They take very long (over
112 120/50 SBU, one/four cores) and use a very large disk space (up to
113 40 GB). You can use the <parameter>-jN</parameter> switch to
114 speed them up.
115 </para>
116
117 <para>
118 Now, as the <systemitem class="username">root</systemitem> user:
119 </para>
120
121<!-- dev note: ./b2 - -prefix=<DESTDIR>/usr install threading=multi link=shared -->
122
123<screen role="root"><userinput>./b2 install threading=multi link=shared</userinput></screen>
124
125 </sect2>
126
127 <sect2 role="commands">
128 <title>Command Explanations</title>
129
130 <para>
131 <command>sed ... has_binary_operator.hpp</command>: This command
132 fixes a header to overcome a problem with Qt's moc command. It
133 is necessary for building some KDE packages.
134 </para>
135
136 <para>
137 <parameter>threading=multi</parameter>: This parameter ensures that
138 <application>Boost</application> is built with multithreading support.
139 </para>
140
141 <para>
142 <parameter>link=shared</parameter>: This parameter ensures that only
143 shared libraries are created, except for libboost_exception and
144 libboost_test_exec_monitor which are created as static. Most people
145 will not need the static libraries. Indeed most programs using
146 <application>Boost</application> only use the headers. 0mit
147 this parameter if you do need static libraries.
148 </para>
149
150 <para>
151 <option>-jN</option>: This switch may be added to the
152 <command>b2</command> command lines, to run up to N processes in
153 parallel.
154 </para>
155
156 </sect2>
157
158 <sect2 role="content">
159 <title>Contents</title>
160
161 <segmentedlist>
162 <segtitle>Installed Programs</segtitle>
163 <segtitle>Installed Libraries</segtitle>
164 <segtitle>Installed Directory</segtitle>
165
166 <seglistitem>
167 <seg>
168 None
169 </seg>
170 <seg>
171 libboost_atomic.so, libboost_chrono.so, libboost_container.so,
172 libboost_context.so, libboost_coroutine.so, libboost_date_time.so,
173 libboost_exception.a, libboost_filesystem.so, libboost_graph.so,
174 libboost_iostreams.so, libboost_locale.so, libboost_log_setup.so,
175 libboost_log.so, libboost_math_c99.so, libboost_math_c99f.so,
176 libboost_math_c99l.so, libboost_math_tr1.so, libboost_math_tr1f.so,
177 libboost_math_tr1l.so, libboost_prg_exec_monitor.so,
178 libboost_program_options.so, libboost_python.so, libboost_random.so,
179 libboost_regex.so, libboost_serialization.so, libboost_signals.so,
180 libboost_system.so, libboost_test_exec_monitor.a, libboost_thread.so,
181 libboost_timer.so, libboost_unit_test_framework.so, libboost_wave.so,
182 and libboost_wserialization.so
183 </seg>
184 <seg>
185 /usr/include/boost
186 </seg>
187 </seglistitem>
188 </segmentedlist>
189
190 </sect2>
191
192</sect1>
Note: See TracBrowser for help on using the repository browser.