如何在VS2019中包含umf

由于近期使用的程序要用到 umf 这个库,实现起来比较复杂,将过程简单记录以下。
umf 库不是现成的,需要自己从开源网站上git下来编译,这里用到了 make 编译,本人在 windows 下不会用,只好在 Linux 端编译好再移植到 VS 上使用。

1. 安装 gmp

大整数运算库,这个是需要先安装的,要不然会报 fatal error: gmp.h: No such file or directory.
从官网 下载 .tar文件,解压后

./configure --enable-cxx
make
make check 
sudo make install

参考:大整数运算库gmp安装及使用
就安装完成了

2.安装 mpfr

用于多精度浮点数运算,不装会和1报一样的错误。
源码官网

./configure
make -j4
sudo make install

参考:mpfr源码编译

3.编译umf

源码

git clone https://github.com/DrTimothyAldenDavis/SuiteSparse.git
cd SuiteSparse/
make
AUTOCC=no CC=gcc CX=g++ JOBS=32 make
make install

以上失败了,试一下下面的

4.另一个umf

github源码
git 并解压后

cd umf
mkdir build
cd build
cmake -G 'Unix Makefiles' ../
cmake -L ../
make install

你可能感兴趣的:(C++,c++)