使用 gcc 链接 Apple 框架
我创建了一些包装函数来封装 CoreAudio 的使用,目标是创建一个可以与某些命令行 C++ 工具一起使用的 C 库。到目前为止一切进展顺利。我获取了一个示例项目,对其进行了修改,然后它在 XCode 中构建并运行。我想完全跳过 XCode,并使用 gcc 和 Makefile 构建库。
如何链接 Apple 框架?框架只是我可以包含在 gcc 的 -l 和 -L 选项中的共享库吗?
I've created some wrapper functions that encapsulate working with CoreAudio, and the goal is to create a C library that I can use with some command line C++ tools. So far things are working well. I took a sample project, modified it, and it builds and runs in XCode. I'd like to skip XCode altogether and build the library with gcc and a Makefile.
How can I link against an Apple Framework? Are Frameworks just shared libraries that I could include in the -l and -L options on gcc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个例子:
来自 Apple 的 gcc (i686-apple-darwin10-gcc-4.2.1) 的手册页:
以及来自 ld 的手册页:
Here's an example:
From the man page of Apple's gcc (i686-apple-darwin10-gcc-4.2.1):
And from ld's man page: