我已经下载了GMP multiprecision库,并且我使用gcc main.c -lgmp
命令通过终端编译了以下代码而没有错误,但我无法弄清楚如何在XCode 4.5中包含GMP
库因为网上的howtos有点令人困惑。
我真的需要将GMP
库用于我的项目,任何评论都会有很大的帮助。
#include <stdio.h>
#include <gmp.h>
int main(int argc, const char * argv[])
{
printf("Hello, World!\n");
mpz_t a;
return 0;
}
答案 0 :(得分:0)
(在问题编辑中回答。转换为社区维基回答。请参阅What is the appropriate action when the answer to a question is added to the question itself?)
OP写道:解决
1)打开左侧面板,转到&#34; ProjectName&#34;,目标,构建阶段,链接二进制文件库并选择您的库。
2)打开左侧面板,转到&#34; ProjectName&#34;,项目,标题搜索路径,写下图书馆标题所在的路径( .h 文件,通常位于 / usr / local / include )。
3)打开左侧面板,转到&#34; ProjectName&#34;,Project,Library Search Paths,编写库所在的路径( .a 或 .dylib 文件,通常位于 / usr / local / lib )