Xcode 11报错 library not found for -libstdc++.6.0.9

因为Xcode10彻底废弃了libstdc++相关的库文件,所以在Xcode10以后的版本中还需要继续使用,需要添加以下文件:

1.真机

将libstdc++.6.0.9.tbd文件拷贝到以下路径:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib

2.模拟器

将libstdc++.6.0.9.tbd文件拷贝到以下路径:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib

完成上述操作,真机可以运行,但是模拟器还会报错:

Reason:no suitable image found. Did find: /usr/lib/libstdc++.6.dylib : mach-o, but not builtforiOS simulator

====================模拟器还需添加以下文件=====================

将libstdc++.6.0.9.dylib,libstdc++.6.dylib,libstdc++.dylib文件拷贝到以下路径:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib

文件获取链接:https://pan.baidu.com/s/1evpM29cusH5KwWecwE1I8g 密码:r445

你可能感兴趣的:(Xcode 11报错 library not found for -libstdc++.6.0.9)