将静态库链接到 iPhone 应用程序

发布于 2024-12-09 02:13:24 字数 307 浏览 0 评论 0原文

我正在尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海未深 2024-12-16 02:13:24

也许您将“标头搜索路径”与“链接二进制库”混淆了。
将 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文