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 上合并静态库


基础教程推荐
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01