MPFR

From CBLFS
Revision as of 16:29, 25 February 2007 by Winkie (talk | contribs) (... and fix my last edit. Damn, I'm just that bad.)
Jump to navigationJump to search
Download Source: http://www.mpfr.org/mpfr-2.4.1/mpfr-2.4.1.tar.bz2

Introduction to MPFR

The MPFR library is a C library for multiple-precision floating-point computations with exact rounding (also called correct rounding).

Dependencies

Required

Non-Multilib

Compile the package:

./configure --prefix=/usr --enable-shared &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr \
    --enable-shared &&
make

Install the package:

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
    --libdir=/usr/lib32 --enable-shared &&
make

Install the package:

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    --libdir=/usr/lib64 --enable-shared &&
make

Install the package:

make install

Documentation

Create the directory that the documentation will be installed into:

install -d -v -m755 /usr/share/doc/mpfr-2.4.1

DVI

make dvi &&
install -v -m644 mpfr.dvi /usr/share/doc/mpfr-2.4.1

PS

make mpfr.ps && 
install -v -m644 mpfr.ps /usr/share/doc/mpfr-2.4.1

PDF

make pdf && 
install -v -m644 mpfr.pdf /usr/share/doc/mpfr-2.4.1

Contents

  • Installed Libraries: libmpfr.{la,a,so,so.1,so.1.0.1}