source: chapter08/gmp.xml@ a56ef91

xry111/arm64 xry111/arm64-12.0
Last change on this file since a56ef91 was 5adc76b, checked in by Xi Ruoyao <xry111@…>, 20 months ago

arm64: gmp: remove reference to 32-bit or x86

  • Property mode set to 100644
File size: 4.8 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-fin-sbu;</seg>
35 <seg>&gmp-fin-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>The default settings of GMP produce libraries optimized for
46 the host processor. If libraries suitable for processors less
47 capable than the host's CPU are desired, generic libraries can be
48 created by running the following:
49
50<screen role="nodump"><userinput>cp -v configfsf.guess config.guess
51cp -v configfsf.sub config.sub</userinput></screen></para>
52 </note>
53
54 <para>Prepare GMP for compilation:</para>
55
56<screen><userinput remap="configure">./configure --prefix=/usr \
57 --enable-cxx \
58 --disable-static \
59 --docdir=/usr/share/doc/gmp-&gmp-version;</userinput></screen>
60
61 <variablelist>
62 <title>The meaning of the new configure options:</title>
63
64 <varlistentry>
65 <term><parameter>--enable-cxx</parameter></term>
66 <listitem>
67 <para>This parameter enables C++ support</para>
68 </listitem>
69 </varlistentry>
70
71 <varlistentry>
72 <term><parameter>--docdir=/usr/share/doc/gmp-&gmp-version;</parameter></term>
73 <listitem>
74 <para>This variable specifies the correct place for the
75 documentation.</para>
76 </listitem>
77 </varlistentry>
78
79 </variablelist>
80
81 <para>Compile the package and generate the HTML documentation:</para>
82
83<screen><userinput remap="make">make
84make html</userinput></screen>
85
86 <important>
87 <para>The test suite for GMP in this section is considered critical.
88 Do not skip it under any circumstances.</para>
89 </important>
90
91 <para>Test the results:</para>
92
93<screen><userinput remap="test">make check 2>&amp;1 | tee gmp-check-log</userinput></screen>
94
95 <caution><para>The code in gmp is highly optimized for the processor where
96 it is built. Occasionally, the code that detects the processor misidentifies
97 the system capabilities and there will be errors in the tests or other
98 applications using the gmp libraries with the message "Illegal
99 instruction". In this case, gmp should be reconfigured with the option
100 --build=aarch64-unknown-linux-gnu and rebuilt.</para></caution>
101
102 <para>Ensure that all 197 tests in the test suite passed.
103 Check the results by issuing the following command:</para>
104
105<screen><userinput remap="test">awk '/# PASS:/{total+=$3} ; END{print total}' gmp-check-log</userinput></screen>
106
107 <para>Install the package and its documentation:</para>
108
109<screen><userinput remap="install">make install
110make install-html</userinput></screen>
111
112 </sect2>
113
114 <sect2 id="contents-gmp" role="content">
115 <title>Contents of GMP</title>
116
117 <segmentedlist>
118 <segtitle>Installed Libraries</segtitle>
119 <segtitle>Installed directory</segtitle>
120
121 <seglistitem>
122 <seg>libgmp.so and libgmpxx.so</seg>
123 <seg>/usr/share/doc/gmp-&gmp-version;</seg>
124 </seglistitem>
125 </segmentedlist>
126
127 <variablelist>
128 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
129 <?dbfo list-presentation="list"?>
130 <?dbhtml list-presentation="table"?>
131
132 <varlistentry id="libgmp">
133 <term><filename class="libraryfile">libgmp</filename></term>
134 <listitem>
135 <para>Contains precision math functions</para>
136 <indexterm zone="ch-system-gmp libgmp">
137 <primary sortas="c-libgmp">libgmp</primary>
138 </indexterm>
139 </listitem>
140 </varlistentry>
141
142 <varlistentry id="libgmpxx">
143 <term><filename class="libraryfile">libgmpxx</filename></term>
144 <listitem>
145 <para>Contains C++ precision math functions</para>
146 <indexterm zone="ch-system-gmp libgmpxx">
147 <primary sortas="c-libgmpxx">libgmpxx</primary>
148 </indexterm>
149 </listitem>
150 </varlistentry>
151 </variablelist>
152
153 </sect2>
154
155</sect1>
Note: See TracBrowser for help on using the repository browser.