- bitcode bundle could not be gene
- iOS--Archive打包报错:linker command
- Undefined symbols for architectu
- Swift3.1在Xcode8.3中打包错误
- iOS运行正常,打包出现错误archive symbol(s)
- xcode archive报错:bitcode bundle c
- xcode7集成百度地图(framwork包) archive是
- 集成百度地图(framwork包) archive是bitcod
- Lazarus Indy RunError错误
- archive linker command failed wi
iOS 编译、运行正常,打包(Archive)出错的解决
报错:
Showing Recent Messages
PhaseScriptExecution [CP]\ Embed\ Pods\ Frameworks /Users/ky/Library/Developer/Xcode/DerivedData/xxx-bjmyixsbdlauhmfnjmpgupwbdaeg/Build/Intermediates.noindex/ArchiveIntermediates/xxx/IntermediateBuildFilesPath/xxx.build/Release-iphoneos/xxx.build/Script-F34F8DB54FE4BD2140C3208D.sh (in target 'xxx' from project 'xxx')
rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/c2cb9645-dafc-11ed-aa26-6ec1e3b3f7b3/Library/Caches/com.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9]
Command PhaseScriptExecution failed with a nonzero exit code
![](https://img.haomeiwen.com/i6522472/0b9196825f8ddaca.png)
解决:
找到Pod文件下面的Pods-xxx-frameworks.sh 下面的 source="$(readlink "${source}")"
改成 source="$(readlink -f "${source}")"
保存修改,clean一下,重新编译打包
![](https://img.haomeiwen.com/i6522472/a8ad168f9f1e53c6.png)
![](https://img.haomeiwen.com/i6522472/f0a9289e7f1fbf3a.png)
网友评论