最近,项目需要在发行版10.04的Ubuntu下使用GMP高精度数学库,发现该发行版Ubuntu是不包含GMP库的,只能自己到官网上下载安装。
1、下载最新GMP库
官网地址:https://gmplib.org/
下载 gmp-6.0.0a.tar.bz2,解压
2、安装GMP
编译准备
./configure --prefix=/usr \
--enable-cxx \
--disable-static \
--docdir=/usr/share/doc/gmp-6.0.0a
编译包和生成HTML文档
make
make html
<pre name="code" class="plain">make check
安装包和相关文档
make install
make install-html
(安装参考:http://www.linuxfromscratch.org/lfs/view/development/chapter06/gmp.html)