我终于完成了我的应用程序,我正准备上传,突然这个突然的错误袭击了我,我不知道该怎么办。我已经检查了其他帖子,说要更改代码签名身份,我已经这样做了,但没有运气。我尝试了身份中的每一个选项,但没有任何改变。如果有人知道发生了什么,我会非常感谢,因为我只是想提交我的应用程序。
下面是错误日志中的其他内容:
/usr/bin/lipo: /Users/teddy/Library/Developer/Xcode/DerivedData/grocery_stores-dcyubhefhrcjhtcxbhldfpukdgdz/Build/Intermediates/grocery stores.build/Release-iphoneos/grocerystores.build/Objects-normal/armv7/grocery stores and /Users/teddy/Library/Developer/Xcode/DerivedData/grocery_stores-dcyubhefhrcjhtcxbhldfpukdgdz/Build/Intermediates/grocery stores.build/Release-iphoneos/grocery stores.build/Objects-normal/armv7/grocery stores have the same architectures (armv7) and can't be in the same fat output file
Command /usr/bin/lipo failed with exit code 1发布于 2012-06-04 14:57:57
通过将项目>构建设置>架构中的有效架构的值从默认的"armv6 armv7“更改为"armv7”,我解决了这个问题。希望这能有所帮助。
发布于 2012-02-08 23:46:57
如果没有您正在运行的命令,很难看到到底发生了什么。在我看来,您指定了两次相同的输入文件,即arm7版本和lipo告诉您不能将2个arm7版本的杂货店添加到通用文件中。你能输入你正在运行的整个lipo命令吗?在lipo手册页中:-create获取输入文件(或文件),并从它们创建一个通用输出文件。你有没有可能让同一个文件在这里列出两次?
发布于 2013-11-26 17:14:03
尝试将构建目标更改为模拟器构建,清理并重新运行。
https://stackoverflow.com/questions/9189259
复制相似问题