从理论上讲,我们似乎可以构建一个包含模拟器、iPhone和iPad的单一静态库。

然而,苹果没有我能找到的关于这方面的文档,Xcode的默认模板也没有配置这样做。

我正在寻找一个简单的,可移植的,可重用的技术,可以在Xcode中完成。

一些历史:

在2008年,我们曾经能够制作包含sim卡和设备的单个静态库。苹果禁用了这个功能。 整个2009年,我们做了一对静态库-一个用于sim,一个用于设备。苹果现在也禁用了这个功能。

引用:

This is a great idea, it's an excellent approach, but it doesn't work: http://www.drobnik.com/touch/2010/04/universal-static-libraries/ There's some bugs in his script that means it only works on his machine - he should be using BUILT_PRODUCTS_DIR and/or BUILD_DIR instead of "guesstimating" them) Apple's latest Xcode prevents you from doing what he's done - it simply will not work, due to the (Documented) change in how Xcode processes targets) Another SO questioner asked how to do it WITHOUT xcode, and with responses that focussed on the arm6 vs arm7 part - but ignored the i386 part: How do i compile a static library (fat) for armv6, armv7 and i386 Since Apple's latest changes, the Simulator part isn't the same as the arm6/arm7 difference any more - it's a different problem, see above)


当前回答

IOS 10更新:

我在使用iphoneos10.0构建fatlib时遇到了一个问题,因为脚本中的正则表达式只期望9。X和更低,在ios 10.0中返回0.0

要解决这个问题,只需替换

SDK_VERSION=$(echo ${SDK_NAME} | grep -o '.\{3\}$')

SDK_VERSION=$(echo ${SDK_NAME} | grep -o '[\\.0-9]\{3,4\}$')

其他回答

我已经创建了一个XCode 4项目模板,它可以让你像创建常规库一样轻松地创建一个通用框架。

实际上,我只是为了这个目的写了自己的脚本。它不使用Xcode。 (它基于Gambit Scheme项目中的一个类似脚本。)

基本上,它运行。/configure和make三次(适用于i386、armv7和armv7s),并将每个生成的库合并到一个胖库中。

我把它做成了一个Xcode 4模板,与Karl的静态框架模板相同。

我发现构建静态框架(而不是普通的静态库)会导致LLVM随机崩溃,这是由于一个明显的链接器错误——所以,我猜静态库仍然有用!

XCode 12更新:

如果你运行xcodebuild而不带-arch参数,XCode 12将默认构建架构为“arm64 x86_64”的模拟器库。

然后运行xrun -sdk iphoneos lipo -create -output会有冲突,因为模拟器中有arm64架构,也有设备库。

我叉子脚本从亚当git和修复它。

伟大的工作!我拼凑了一些类似的东西,但必须单独运行。让它成为构建过程的一部分会使构建过程简单得多。

有一点值得注意。我注意到它不会复制任何你标记为公共的包含文件。我把我剧本里的内容改编成了你的,效果相当不错。将以下内容粘贴到脚本的末尾。

if [ -d "${CURRENTCONFIG_DEVICE_DIR}/usr/local/include" ]
then
  mkdir -p "${CURRENTCONFIG_UNIVERSAL_DIR}/usr/local/include"
  cp "${CURRENTCONFIG_DEVICE_DIR}"/usr/local/include/* "${CURRENTCONFIG_UNIVERSAL_DIR}/usr/local/include"
fi