(1):编译之后某些SDK报错 “DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead” 。
解决方法:1:升级cocoapods
运行: sudo gem update cocoapods
2:查看pod版本 是否在1.13.0以上
pod --version
3: 重新安装 pod
pod install
(2):编译运行之后报 “ SDK does not contain ‘libarclite‘ at the path ‘/Applications/Xcode.app/Con...”
报错的情况下没有arc文件夹,也没有 libarclite_iphonesimulator.a文件,
解决方法
1、进入/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/
lib/ 文件下。
2、新建arc文件夹。
3、下载:https://github.com/kamyarelyasi/Libarclite-Files中的 libarclite_iphonesimulator.a 和libarclite_iphoneos.a
4、将下载下来的文件粘贴到/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc下
5、重新运行后将修复这个问题。
网友评论