Combine static libraries on Apple(在 Apple 上合并静态库)
问题描述
我尝试了这个问题中的方法, 但是 ar
的 linux 版本似乎与 mac 版本不一样,因为我未能再次合并目标文件.
I tried the approach in this question, but it seems the linux version of ar
is not the same as the mac version since I failed to combine the object files again.
我基本上想做的是通过运行脚本构建阶段将另一个静态库合并到我的 Xcode 静态库构建产品中.
What I basically want to do is is merge another static library into my Xcode static library build product via a run-script build phase.
很遗憾,我无法将其他库直接编译到我的项目中,因为它有自己的构建系统(因此我使用编译后的库).
Unfortunately I can't compile the other library directly into my project because it has it's own build system (therefore I use the compiled libs).
我认为应该可以通过 ar
将其他库合并到 Xcode 生成的库中,而无需反编译构建产品.我该如何做到这一点?
I think it should be possible to merge the other library via ar
into the Xcode generated library without decompiling the build product. How do I accomplish this?
推荐答案
你可以使用libtool
来做
libtool -static -o new.a old1.a old2.a
这篇关于在 Apple 上合并静态库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Apple 上合并静态库


- Android - 拆分 Drawable 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01