2018年09月18日 今天更新了Xcode10.0
git管理有改动会自动标记遇到的问题 :
请看下这个文件是不是爆红找不到报错:library not found for -libstdc++.6.0.9
苹果的解释是libstdc++已经标记为废弃有5年了,建议大家使用经过了llvm优化过并且全面支持C++11的libc++库。
目前临时的解决办法:
拷贝以前Xcode的缺失的 libstdc++、libstdc++.6、libstdc++6.0.9 到新的SDK下
(右击选中 show In Finder)
自己领悟
需要拷贝2套: 模拟器一套 真机一套
//真机
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/
//模拟器
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/
//iOS12.0
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/usr/lib/
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/
Multiple commands produce '/Users/。。。/Info.plist':
-
Target 'Lianjia_Beike_SecondHand_Private-Lianjia_Hom。。。。。。
-
Target 'Lianjia_Beike_Seco 。。。。。
由于重复文件是导致编译报错的问题。
解决:
xcode--file--Workspace Settings--Build System--legacy Build System
有任何别的问题请留言逐一解决!
网友评论