source: general/genlib/boost.xml@ 10dbdc5

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 10dbdc5 was 18c9ee54, checked in by Bruce Dubbs <bdubbs@…>, 11 years ago

Tag kde and supporting programs.
Modified some whitespace and made other formatting changes.

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

  • Property mode set to 100644
File size: 5.1 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 "15cb8c0803064faef0c4ddf5bc5ca279">
10 <!ENTITY boost-size "55 MB">
11 <!ENTITY boost-buildsize "713 MB">
12 <!ENTITY boost-time "5.4 SBU">
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 &lfs74_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">Additional Downloads</bridgehead>
76 <itemizedlist spacing="compact">
77 <listitem>
78 <para>
79 Required patch:
80 <ulink url="&patch-root;/boost-&boost-version;-glibc-1.patch"/>
81 </para>
82 </listitem>
83 </itemizedlist>
84
85 <bridgehead renderas="sect3">Boost Dependencies</bridgehead>
86
87 <bridgehead renderas="sect4">Optional</bridgehead>
88 <para role="optional">
89 <xref linkend="icu"/> and
90 <xref linkend="python2"/>
91 </para>
92
93 <para condition="html" role="usernotes">User Notes:
94 <ulink url="&blfs-wiki;/boost"/>
95 </para>
96 </sect2>
97
98 <sect2 role="installation">
99 <title>Installation of Boost</title>
100
101 <para>
102 Install <application>Boost</application> by running the following
103 commands:
104 </para>
105
106<screen><userinput>patch -Np1 -i ../boost-&boost-version;-glibc-1.patch &amp;&amp;
107./bootstrap.sh --prefix=/usr &amp;&amp;
108./b2 stage threading=multi link=shared</userinput></screen>
109
110 <para>
111 This package does not come with a test suite.
112 </para>
113
114 <para>
115 Now, as the <systemitem class="username">root</systemitem> user:
116 </para>
117
118<screen role="root"><userinput>./b2 install threading=multi link=shared</userinput></screen>
119
120 </sect2>
121
122 <sect2 role="commands">
123 <title>Command Explanations</title>
124
125 <para>
126 <parameter>threading=multi</parameter>: This parameter ensures that
127 <application>Boost</application> is built with multithreading support.
128 </para>
129
130 <para>
131 <parameter>link=shared</parameter>: This parameter ensures that only shared
132 libraries are created, except for libboost_exception and libboost_test_exec_monitor
133 which are created as static. Most people will not need the static libraries, indeed
134 most programs using <application>Boost</application> only use the headers, but omit
135 this parameter if you do need them.
136 </para>
137
138 </sect2>
139
140 <sect2 role="content">
141 <title>Contents</title>
142
143 <segmentedlist>
144 <segtitle>Installed Programs</segtitle>
145 <segtitle>Installed Libraries</segtitle>
146 <segtitle>Installed Directory</segtitle>
147
148 <seglistitem>
149 <seg>
150 None
151 </seg>
152 <seg>
153 libboost_atomic.so, libboost_chrono.so, libboost_context.so,
154 libboost_date_time.so, libboost_exception.a, libboost_filesystem.so,
155 libboost_graph.so, libboost_iostreams.so, libboost_locale.so,
156 libboost_math_c99f.so, libboost_math_c99l.so, libboost_math_c99.so,
157 libboost_math_tr1f.so, libboost_math_tr1l.so, libboost_math_tr1.so,
158 libboost_prg_exec_monitor.so, libboost_program_options.so, libboost_python.so,
159 libboost_random.so, libboost_regex.so, libboost_serialization.so,
160 libboost_signals.so, libboost_system.so, libboost_test_exec_monitor.a,
161 libboost_thread.so, libboost_timer.so, libboost_unit_test_framework.so,
162 libboost_wave.so and libboost_wserialization.so
163 </seg>
164 <seg>
165 /usr/include/boost
166 </seg>
167 </seglistitem>
168 </segmentedlist>
169
170 </sect2>
171
172</sect1>
Note: See TracBrowser for help on using the repository browser.