为iphoneimulator构建适用于64x和32x的iOS

时间:2015-03-16 10:16:39

标签: ios 64-bit ios-simulator xcodebuild

我正在尝试构建一个可以在64-32x上使用iphonesimulator的框架。

我执行的命令是:

xcodebuild -target mypack -sdk iphonesimulator8.1 -configuration Release -arch i386

由于某些原因,当我尝试使用iphonesimulator在64x项目ipa上运行此框架时,它给我一个错误。

有人能告诉我我做错了吗?

1 个答案:

答案 0 :(得分:1)

我在我的框架项目中添加了一个名为x86_64的新arch,然后为我解决的问题是以下命令:

xcodebuild -target MobileCore -sdk iphonesimulator8.1 -configuration Release -arch i386 -arch x86_64