我在尝试运行使用NinevehGL框架的XCODE应用程序时发现了这些错误:
ld: truncated fat file. Slice from 1478656 to 2279616 is past end of file with length 2270604 file './NinevehGL.framework/NinevehGL' for architecture i386 clang: error: linker command Failed with exit code 1 (use -v to see invocation)
解决方法
尝试在项目中进行以下更改: –
>在链接阶段包括所有必要的框架
>从其他链接器标志中删除-all_load.
>清理构建文件夹并从头开始重新编译.
This could很好是一个权限问题,一个损坏的iOS SDK安装,或一个损坏的Xcode安装.我会删除/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulatorXXX.sdk,然后进入Xcode>偏好>下载并重新安装iOS SDK.然后再次尝试清理和构建项目.
如果您仍有问题,我会考虑重新安装Xcode.
还看看how to fix xcode路径问题.