新手安装libfplll
1.安装libfplll之前要安装gmp,安装gmp之前要安装m4,m4可以自动安装:sudo apt-get install m4.
2.源码安装gmp,到存放gmp源码的目录下:$ ./configure --prefix=/usr/local/gmp-5.1.1(这里是指定安装目录)
$ make
$ make check
$ make install
如上诉安装出现错误,则可能是权限不够,由于本人用的不是root用户,用$sudo make install。就可以正常安装了。这样安装好之后,再安装libfplll出现:Error : not found GUN mp如问题,查看gmp-5.1.1/lib库里的lib不够。使用$./configure --enable-cxx --prefix=/usr/local/gmp-5.1.1 CPPFLAGS=-fexceptions
安装是则成功。(原理尚不明确)
3.同样用configure,make,make check,make install安装完libfplll,没出问题。在调用这个库执行CPP文件时出错。/tests: error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or directory。出先这个错误,是动态库的原因。执行$echo "/usr/l