我如何编译MPC代码?

时间:2011-08-10 14:10:59

标签: c++ g++ mpc

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

1 个答案:

答案 0 :(得分:2)

你需要链接libmpc:

gcc foo.c -o foo -lmpc

我用ucntu包中的mpc测试它:

sudo aptitude install libmpc-dev libmpc2

我的foo.c看起来像:

#include "mpc.h"

int main() {
    mpc_t x;
    mpc_init2 (x, 256);
    return 0;
}