将静态库链接到 iPhone 应用程序
我正在尝试将 2 个静态库与我的 iPhone 应用程序链接。当我使用 g++ 编译一个单独的、相同的文件时,该文件链接到两个库,如下所示: c++ main.cpp -o main -lcln -lginac 效果很好。
在我的应用程序中,我进入了构建阶段 ->将二进制文件与库链接并添加 libginac.a 和 libcln.a。但是,当我在 #include ginac/ginac.h 行编译我的应用程序时,出现错误:ginac/ginac.h:没有这样的文件或目录。
什么是我做错了吗?
I'm trying to link 2 static libraries with my iPhone app. When I compile a separate, identical file with g++ that links against the 2 libraries like this:
c++ main.cpp -o main -lcln -lginac
it works fine.
In my app I went to build phases -> link binary with libraries and added libginac.a and libcln.a. However, when I compile my app at the line #include ginac/ginac.h I get the error: ginac/ginac.h: No such file or directory.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您将“标头搜索路径”与“链接二进制库”混淆了。
将 .a 文件添加到项目文件并不意味着标头也可用。
您应该检查“构建设置”中的“标头搜索路径”,并确保在那里设置了“ginac”的路径。
Maybe you mix up "header search path" with "links binary libraries".
Adding the .a file to your project files does not mean, that also the headers are available.
You should check the "header search path" within your "build settings" and make sure, the path to "ginac" is set there.
这个问题:
还有这个答案应该可以帮助您解决问题。
此外:
This question:
And this answer should help you solve the issue.
In addition: