我正在尝试建立一个可以在64-32x上与iphonesimulator一起使用的框架。
我正在执行的命令是:
xcodebuild -target mypack -sdk iphonesimulator8.1 -configuration Release -arch i386
出于某种原因,当我尝试使用iphonesimulator在64x项目ipa上运行此框架时,这使我出错。
有人可以告诉我我在做什么错吗?
最佳答案
我在框架项目中添加了一个名为x86_64的新拱门,然后通过以下命令为我解决了这个问题:
xcodebuild -target MobileCore -sdk iphonesimulator8.1 -configuration Release -arch i386 -arch x86_64
关于ios - 为64x和32x的iphonesimulator构建iOS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29074297/