Difference between revisions of "MPFR"
From CBLFS
Jump to navigationJump to search (Updated instructions for MPFR 2.2.1) |
m (Removed remnants of patch (woops)) |
||
Line 3: | Line 3: | ||
!Download Source: | !Download Source: | ||
| http://www.mpfr.org/mpfr-{{MPFR-Version}}/mpfr-{{MPFR-Version}}.tar.bz2 | | http://www.mpfr.org/mpfr-{{MPFR-Version}}/mpfr-{{MPFR-Version}}.tar.bz2 | ||
− | + | } | |
− | |||
− | |||
− | |||
== Introduction to MPFR == | == Introduction to MPFR == |
Revision as of 15:28, 25 February 2007
Download Source: | http://www.mpfr.org/mpfr-2.4.1/mpfr-2.4.1.tar.bz2
} ContentsIntroduction to MPFRThe MPFR library is a C library for multiple-precision floating-point computations with exact rounding (also called correct rounding). DependenciesRequired
Non-MultilibCompile the package: ./configure --prefix=/usr --enable-shared && make Install the package: make install Multilib32BitCompile the package: CC="gcc ${BUILD32}" ./configure --prefix=/usr \ --enable-shared && make Install the package: make install N32Compile the package: CC="gcc ${BUILDN32}" ./configure --prefix=/usr \ --libdir=/usr/lib32 --enable-shared && make Install the package: make install 64BitCompile the package: CC="gcc ${BUILD64}" ./configure --prefix=/usr \ --libdir=/usr/lib64 --enable-shared && make Install the package: make install DocumentationCreate the directory that the documentation will be installed into: install -d -v -m755 /usr/share/doc/mpfr-2.4.1 DVImake dvi && install -v -m644 mpfr.dvi /usr/share/doc/mpfr-2.4.1 PSmake 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
|
---|