我已经下载了GMP多倍库,我没有错误,通过与终端编译下面的代码gcc main.c -lgmp
命令,但我无法弄清楚如何包括GMP
中的XCode 4.5库,因为的HOWTO文档在线是一个有点混乱。
我真的需要使用GMP
库为我的项目和任何意见将是巨大的帮助。
#include <stdio.h>
#include <gmp.h>
int main(int argc, const char * argv[])
{
printf("Hello, World!\n");
mpz_t a;
return 0;
}