The GMP package contains math libraries. These have useful functions for arbitrary precision arithmetic.
Download (HTTP): http://ftp.gnu.org/gnu/gmp/gmp-4.1.4.tar.bz2
Download (FTP): ftp://ftp.gnu.org/gnu/gmp/gmp-4.1.4.tar.bz2
Download MD5 sum: 0aa7d3b3f5b5ec5951e7dddd6f65e891
Download size: 1.6 MB
Estimated disk space required: 34 MB
Estimated build time: 0.91 SBU
Install GMP by running the following commands:
./configure --prefix=/usr --enable-cxx \
--enable-mpbsd --enable-mpfr &&
make &&
make install
--enable-cxx: This parameter enables C++ support by building the libgmpxx libraries.
--enable-mpbsd: This parameter enables building the Berkeley MP compatibility (libmp) libraries.
--enable-mpfr: This parameter enables building the Multiple Precision Floating-Point Reliable (libmpfr.a) library.
The GMP package contains libgmp and libmp libraries.
Last updated on 2005-02-04 16:29:53 -0700