source: clfs-sysroot/BOOK/final-system/common/gmp.xml @ d30b2ab

Last change on this file since d30b2ab was d30b2ab, checked in by Chris Staub <chris@…>, 15 years ago

Text updates

  • 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>./configure --prefix=/usr \
37    --build=${CLFS_HOST} --host=${CLFS_TARGET} \
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    <para os="e">Install the package:</para>
45
46<screen os="f"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
47
48    <para os="g">At this time, Libtool does not support searching a sysroot
49    for libraries. Leaving the .la files in place will cause Libtool to look
50    in the wrong place for libraries. These files are not required for
51    linking on Linux. Remove them with the following command:</para>
52
53<screen os="h"><userinput>rm -v ${CLFS}/usr/lib/lib{gmp,gmpxx,mp}.la</userinput></screen>
54
55  </sect2>
56
57  <sect2 id="contents-gmp" role="content">
58    <title>Contents of GMP</title>
59
60    <segmentedlist>
61      <segtitle>Installed Libraries</segtitle>
62
63      <seglistitem>
64        <seg>libgmp.[a,so], libgmpxx[a,so]</seg>
65      </seglistitem>
66    </segmentedlist>
67
68    <variablelist>
69      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
70      <?dbfo list-presentation="list"?>
71      <?dbhtml list-presentation="table"?>
72
73      <varlistentry id="libgmp">
74        <term><filename class="libraryfile">libgmp</filename></term>
75        <listitem>
76          <para>Contains the definitions for GNU multiple precision functions.</para>
77          <indexterm zone="ch-system-gmp libgmp">
78            <primary sortas="b-libgmp">libgmp</primary>
79          </indexterm>
80        </listitem>
81      </varlistentry>
82
83      <varlistentry id="libgmpxx">
84        <term><filename class="libraryfile">libgmpxx</filename></term>
85        <listitem>
86          <para>Contains a C++ class wrapper for GMP types.</para>
87          <indexterm zone="ch-system-gmp libgmpxx">
88            <primary sortas="b-libgmpxx">libgmpxx</primary>
89          </indexterm>
90        </listitem>
91      </varlistentry>
92
93    </variablelist>
94
95  </sect2>
96
97</sect1>
Note: See TracBrowser for help on using the repository browser.