source: chapter06/gmp.xml@ 0f037a4

7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since 0f037a4 was 6659d8a, checked in by Krejzi <krejzi@…>, 10 years ago

Update gmp tests number.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10599 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 4.3 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
8<sect1 id="ch-system-gmp" role="wrap">
9 <?dbhtml filename="gmp.html"?>
10
11 <sect1info condition="script">
12 <productname>gmp</productname>
13 <productnumber>&gmp-version;</productnumber>
14 <address>&gmp-url;</address>
15 </sect1info>
16
17 <title>GMP-&gmp-version;</title>
18
19 <indexterm zone="ch-system-gmp">
20 <primary sortas="a-GMP">GMP</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The GMP package contains math libraries. These have useful functions
27 for arbitrary precision arithmetic.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&gmp-ch6-sbu;</seg>
35 <seg>&gmp-ch6-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38
39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of GMP</title>
43
44 <note>
45 <para>If you are building for 32-bit x86, but you have a CPU which is
46 capable of running 64-bit code <emphasis>and</emphasis> you have specified
47 <envar>CFLAGS</envar> in the environment, the configure script will
48 attempt to configure for 64-bits and fail.
49 Avoid this by invoking the configure command below with
50<screen role="nodump"><userinput><parameter>ABI=32</parameter> ./configure ...</userinput></screen></para>
51 </note>
52
53 <para>Prepare GMP for compilation:</para>
54
55<screen><userinput remap="configure">./configure --prefix=/usr --enable-cxx \
56 --docdir=/usr/share/doc/gmp-&gmp-version;</userinput></screen>
57
58 <variablelist>
59 <title>The meaning of the new configure options:</title>
60
61 <varlistentry>
62 <term><parameter>--enable-cxx</parameter></term>
63 <listitem>
64 <para>This parameter enables C++ support</para>
65 </listitem>
66 </varlistentry>
67
68 <varlistentry>
69 <term><parameter>--docdir=/usr/share/doc-gmp&gmp-version;</parameter></term>
70 <listitem>
71 <para>This variable specifies the correct place for the
72 documentation.</para>
73 </listitem>
74 </varlistentry>
75
76 </variablelist>
77
78 <para>Compile the package and generate the HTML documentation:</para>
79
80<screen><userinput remap="make">make
81make html</userinput></screen>
82
83 <important>
84 <para>The test suite for GMP in this section is considered critical.
85 Do not skip it under any circumstances.</para>
86 </important>
87
88 <para>Test the results:</para>
89
90<screen><userinput remap="test">make check 2>&amp;1 | tee gmp-check-log</userinput></screen>
91
92 <para>Ensure that all 188 tests in the test suite passed.
93 Check the results by issuing the following command:</para>
94
95<screen><userinput remap="test">awk '/tests passed/{total+=$2} ; END{print total}' gmp-check-log</userinput></screen>
96
97 <para>Install the package and its documentation:</para>
98
99<screen><userinput remap="install">make install
100make install-html</userinput></screen>
101
102 </sect2>
103
104 <sect2 id="contents-gmp" role="content">
105 <title>Contents of GMP</title>
106
107 <segmentedlist>
108 <segtitle>Installed Libraries</segtitle>
109 <segtitle>Installed directory</segtitle>
110
111 <seglistitem>
112 <seg>libgmp.{a,so} and libgmpxx.{a,so}</seg>
113 <seg>/usr/share/doc/gmp-&gmp-version;</seg>
114 </seglistitem>
115 </segmentedlist>
116
117 <variablelist>
118 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
119 <?dbfo list-presentation="list"?>
120 <?dbhtml list-presentation="table"?>
121
122 <varlistentry id="libgmp">
123 <term><filename class="libraryfile">libgmp</filename></term>
124 <listitem>
125 <para>Contains precision math functions.</para>
126 <indexterm zone="ch-system-gmp libgmp">
127 <primary sortas="c-libgmp">libgmp</primary>
128 </indexterm>
129 </listitem>
130 </varlistentry>
131
132 <varlistentry id="libgmpxx">
133 <term><filename class="libraryfile">libgmpxx</filename></term>
134 <listitem>
135 <para>Contains C++ precision math functions.</para>
136 <indexterm zone="ch-system-gmp libgmpxx">
137 <primary sortas="c-libgmpxx">libgmpxx</primary>
138 </indexterm>
139 </listitem>
140 </varlistentry>
141 </variablelist>
142
143 </sect2>
144
145</sect1>
Note: See TracBrowser for help on using the repository browser.