source: clfs-embedded/BOOK/cross-tools/common/mpfr.xml @ ae51e2a

Last change on this file since ae51e2a was 85fc1b3, checked in by Joe Ciccone <jciccone@…>, 13 years ago

Updated MPFR to 3.0.0.

  • Property mode set to 100644
File size: 2.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-cross-tools-mpfr" role="wrap">
9  <?dbhtml filename="mpfr.html"?>
10
11  <title>MPFR-&mpfr-version;</title>
12
13  <indexterm zone="ch-cross-tools-mpfr">
14    <primary sortas="a-MPFR">MPFR</primary>
15    <secondary>cross-tools</secondary>
16  </indexterm>
17
18  <sect2 role="package">
19    <title/>
20
21    <para>The MPFR library is a C library for multiple-precision floating-point
22    computations with correct rounding.</para>
23
24  </sect2>
25
26  <sect2 role="installation">
27    <title>Installation of MPFR</title>
28
29    <para os="a">Prepare MPFR for compilation:</para>
30
31<screen os="b"><userinput>LDFLAGS="-Wl,-rpath,${CLFS}/cross-tools/lib" \
32  ./configure --prefix=${CLFS}/cross-tools --enable-shared \
33  --with-gmp=${CLFS}/cross-tools</userinput></screen>
34
35    <para os="c">Compile the package:</para>
36
37<screen os="d"><userinput>make</userinput></screen>
38
39    <para os="e">Install the package:</para>
40
41<screen os="f"><userinput>make install</userinput></screen>
42
43  </sect2>
44
45  <sect2 id="contents-mpfr" role="content">
46    <title>Contents of MPFR</title>
47
48    <segmentedlist>
49      <segtitle>Installed Libraries</segtitle>
50
51      <seglistitem>
52        <seg>libmpfr.[a,so]</seg>
53      </seglistitem>
54    </segmentedlist>
55
56    <variablelist>
57      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
58      <?dbfo list-presentation="list"?>
59      <?dbhtml list-presentation="table"?>
60
61      <varlistentry id="libmpfr">
62        <term><filename class="libraryfile">libmpfr</filename></term>
63        <listitem>
64          <para>The Multiple Precision Floating-Point Reliable Library.</para>
65          <indexterm zone="ch-cross-tools-mpfr libmpfr">
66            <primary sortas="b-libmpfr">libmpfr</primary>
67          </indexterm>
68        </listitem>
69      </varlistentry>
70
71    </variablelist>
72
73  </sect2>
74
75</sect1>
Note: See TracBrowser for help on using the repository browser.