4

MPC 在这里: http: //www.multiprecision.org/ 我想在 Linux 下用 g++ 编译 C++ 代码,同时安装了 GMP 和 MPFR。关键是我不知道应该在命令行中放置哪些标志进行编译。

4

1 回答 1

2

您需要与 libmpc 链接:

gcc foo.c -o foo -lmpc

我用 ubuntu 包中的 mpc 测试它:

sudo aptitude install libmpc-dev libmpc2

我的 foo.c 看起来像:

#include "mpc.h"

int main() {
    mpc_t x;
    mpc_init2 (x, 256);
    return 0;
}
于 2011-08-10T14:46:11.237 回答