source: chapter06/gmp.xml@ 800f6ea

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 800f6ea was 800f6ea, checked in by Bruce Dubbs <bdubbs@…>, 13 years ago

Minor spacing and xml fixes

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

  • Property mode set to 100644
File size: 5.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
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>First, fix a minor error noted on the upstream web page:</para>
54
55<screen><userinput remap="pre">sed -i 's/np + dn, qn/&amp; - dn/' mpn/generic/dcpi1_bdiv_q.c</userinput></screen>
56
57
58 <para>Prepare GMP for compilation:</para>
59
60<screen><userinput remap="configure">./configure --prefix=/usr --enable-cxx --enable-mpbsd</userinput></screen>
61
62 <variablelist>
63 <title>The meaning of the new configure options:</title>
64
65 <varlistentry>
66 <term><parameter>--enable-cxx</parameter></term>
67 <listitem>
68 <para>This parameter enables C++ support</para>
69 </listitem>
70 </varlistentry>
71
72 <varlistentry>
73 <term><parameter>--enable-mpbsd</parameter></term>
74 <listitem>
75 <para>This builds the Berkeley MP compatibility library</para>
76 </listitem>
77 </varlistentry>
78
79 </variablelist>
80
81 <para>Compile the package:</para>
82
83<screen><userinput remap="make">make</userinput></screen>
84
85 <important>
86 <para>The test suite for GMP in this section is considered critical.
87 Do not skip it under any circumstances.</para>
88 </important>
89
90 <para>Test the results:</para>
91
92<screen><userinput remap="test">make check 2>&amp;1 | tee gmp-check-log</userinput></screen>
93
94 <para>Ensure that all 162 tests in the test suite passed.
95 Check the results by issuing the following command:</para>
96
97<screen><userinput remap="test">awk '/tests passed/{total+=$2} ; END{print total}' gmp-check-log</userinput></screen>
98
99 <para>Install the package:</para>
100
101<screen><userinput remap="install">make install</userinput></screen>
102
103 <para>If desired, install the documentation:</para>
104
105<screen><userinput remap="install">mkdir -v /usr/share/doc/gmp-&gmp-version;
106cp -v doc/{isa_abi_headache,configuration} doc/*.html \
107 /usr/share/doc/gmp-&gmp-version;</userinput></screen>
108
109 </sect2>
110
111 <sect2 id="contents-gmp" role="content">
112 <title>Contents of GMP</title>
113
114 <segmentedlist>
115 <segtitle>Installed Libraries</segtitle>
116 <segtitle>Installed directory</segtitle>
117
118 <seglistitem>
119 <seg>libgmp.{a,so}, libgmpxx.{a,so}, and libmp.{a,so}</seg>
120 <seg>/usr/share/doc/gmp-&gmp-version;</seg>
121 </seglistitem>
122 </segmentedlist>
123
124 <variablelist>
125 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
126 <?dbfo list-presentation="list"?>
127 <?dbhtml list-presentation="table"?>
128
129 <varlistentry id="libgmp">
130 <term><filename class="libraryfile">libgmp</filename></term>
131 <listitem>
132 <para>Contains precision math functions.</para>
133 <indexterm zone="ch-system-gmp libgmp">
134 <primary sortas="c-libgmp">libgmp</primary>
135 </indexterm>
136 </listitem>
137 </varlistentry>
138
139 <varlistentry id="libgmpxx">
140 <term><filename class="libraryfile">libgmpxx</filename></term>
141 <listitem>
142 <para>Contains C++ precision math functions.</para>
143 <indexterm zone="ch-system-gmp libgmpxx">
144 <primary sortas="c-libgmpxx">libgmpxx</primary>
145 </indexterm>
146 </listitem>
147 </varlistentry>
148
149 <varlistentry id="libmp">
150 <term><filename class="libraryfile">libmp</filename></term>
151 <listitem>
152 <para>Contains the Berkeley MP math functions.</para>
153 <indexterm zone="ch-system-gmp libmp">
154 <primary sortas="c-libmp">libmp</primary>
155 </indexterm>
156 </listitem>
157 </varlistentry>
158
159 </variablelist>
160
161 </sect2>
162
163</sect1>
Note: See TracBrowser for help on using the repository browser.