source: BOOK/final-system/common/gmp.xml@ cd317ff

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since cd317ff was 4173cd9, checked in by Jim Gifford <clfs@…>, 16 years ago

Updates to Toolchain Fixes.

  • Property mode set to 100644
File size: 2.9 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 <title>GMP-&gmp-version;</title>
12
13 <indexterm zone="ch-system-gmp">
14 <primary sortas="a-GMP">GMP</primary>
15 <secondary>temporary system</secondary>
16 </indexterm>
17
18 <sect2 role="package">
19 <title/>
20
21 <para>GMP is a library for arithmetic on arbitrary precision integers,
22 rational numbers, and floating-point numbers.</para>
23
24 </sect2>
25
26 <sect2 role="installation">
27 <title>Installation of GMP</title>
28
29 <para os="p1">The following patch contains a number of updates to the
30 &gmp-version; branch by the GMP developers:</para>
31
32<screen os="p2"><userinput>patch -Np1 -i ../&gmp-branch_update-patch;</userinput></screen>
33
34 <para os="a">Prepare GMP for compilation:</para>
35
36<screen os="b"><userinput>CC="gcc -isystem /usr/include" CXX="g++ -isystem /usr/include" \
37 LDFLAGS="-Wl,-rpath-link,/lib" ./configure --prefix=/usr \
38 --enable-cxx --enable-mpbsd</userinput></screen>
39
40 <para os="c">Compile the package:</para>
41
42<screen os="d"><userinput>make</userinput></screen>
43
44 <important os="e">
45 <para>The test suite for GMP is considered
46 critical. Do not skip it under any circumstance.</para>
47 </important>
48
49 <para os="f">Test the results:</para>
50
51<screen os="g"><userinput>make check</userinput></screen>
52
53 <para os="h">Install the package:</para>
54
55<screen os="i"><userinput>make install</userinput></screen>
56
57 </sect2>
58
59 <sect2 id="contents-gmp" role="content">
60 <title>Contents of GMP</title>
61
62 <segmentedlist>
63 <segtitle>Installed Libraries</segtitle>
64
65 <seglistitem>
66 <seg>libgmp.[a,so], libgmpxx[a,so]</seg>
67 </seglistitem>
68 </segmentedlist>
69
70 <variablelist>
71 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
72 <?dbfo list-presentation="list"?>
73 <?dbhtml list-presentation="table"?>
74
75 <varlistentry id="libgmp">
76 <term><filename class="libraryfile">libgmp</filename></term>
77 <listitem>
78 <para>Contains the definitions for GNU multiple precision functions.</para>
79 <indexterm zone="ch-system-gmp libgmp">
80 <primary sortas="b-libgmp">libgmp</primary>
81 </indexterm>
82 </listitem>
83 </varlistentry>
84
85 <varlistentry id="libgmpxx">
86 <term><filename class="libraryfile">libgmpxx</filename></term>
87 <listitem>
88 <para>Contains a C++ class wrapper for GMP types.</para>
89 <indexterm zone="ch-system-gmp libgmpxx">
90 <primary sortas="b-libgmpxx">libgmpxx</primary>
91 </indexterm>
92 </listitem>
93 </varlistentry>
94
95 </variablelist>
96
97 </sect2>
98
99</sect1>
Note: See TracBrowser for help on using the repository browser.