Difference between revisions of "MPFR"
From CBLFS
Jump to navigationJump to searchm |
m |
||
Line 10: | Line 10: | ||
=== Required === | === Required === | ||
− | * [[GMP]] >= 4.1.0 | + | * [[GMP]] >= 4.1.0 (>= 4.2.3 is recommended) |
== Non-Multilib == | == Non-Multilib == |
Revision as of 18:36, 27 January 2009
Download Source: | http://www.mpfr.org/mpfr-current/mpfr-2.4.1.tar.bz2 |
---|
Contents
Introduction to MPFR
The MPFR library is a C library for multiple-precision floating-point computations with exact rounding (also called correct rounding).
Project Homepage: http://www.mpfr.org/
Dependencies
Required
- GMP >= 4.1.0 (>= 4.2.3 is recommended)
Non-Multilib
Apply the upstream cumulative patch and compile the package:
./configure --prefix=/usr --enable-shared && make
Install the package:
make install
Multilib
32Bit
Apply the upstream cumulative patch and compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr \ --enable-shared && make
Install the package:
make install
N32
Apply the upstream cumulative patch and compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr \ --libdir=/usr/lib32 --enable-shared && make
Install the package:
make install
64Bit
Apply the upstream cumulative patch and 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
make pdf && install -v -m644 mpfr.pdf /usr/share/doc/mpfr-2.4.1
Contents
Installed Directories: | None |
---|---|
Installed Programs: | None |
Installed Libraries: | libmpfr.{la,a,so*} |
Short Descriptions
libmpfr | is a C library for multiple-precision floating-point computations with exact rounding. |
---|