我在 VS2019 中构建了源代码中提供的 MPIR 和 MPFR 库.sln
。
基本示例已构建并运行良好。但是,以下内容:
cout << __gmp_bits_per_limb << endl;
cout << gmp_version << endl;
报告缺少链接符号。
第一个对我来说很重要CGAL::Gmpfr
。
我目前的补救措施是定义
const int __gmp_bits_per_limb = 64;
但我没有费心去阅读这个数字的含义,默认值是什么(?)。