本文主要是介绍libstdc++适配Xcode10与iOS12 (零时解决方案),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Xcode正式版:
参考: https://awhisper.github.io/2018/06/08/libstdc-inxcode10ios12/
将 libstdc++.6.0.9.tbd.zip 解压,放到目录:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/
模拟器运行:
拷贝libstdc++之后就可以编译通过了,但 App 在模拟器里一运行就崩溃,就会报动态链接库装载出错,看出错提示说是 .dylib 与这个模拟器不符合。这是 XCode10 自带的 iOS12 模拟器的问题,在 XCode10 中安装 iOS11 的模拟器运行环境,然后切换到 iOS11 模拟器运行,一切问题没有。如果想在 XCode12 iOS12 模拟器中运行:
xcode10
- 将 libstdc++_sim.zip 解压,放到目录:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/
- b. 将 libstdc++.dylib_sim.zip 解压,放到目录:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/
Xcode11:
将 libstdc++.dylib_sim.zip 解压/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/
注意:如果上面的对应库文件不能下请看这篇文章:https://github.com/WuMu123Love/xcode10_libsc.git
注意:*******************************************************
因为Xcode10开始已经libstdc++,再使用需要添加.dylib .tbd文件。
主要是4个文件夹。
1真机运行
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib
在这个文件夹下添加210kb的libstdc++.6.0.9.tbd libstdc++.6.tbd libstdc++.tbd
2模拟器运行
xcode11里
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib
在这个文件夹添加767kb的 libstdc++.6.0.9.dylib libstdc++.6.dylib libstdc++.dylib
xcode10里
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib
在这个文件夹添加767kb的 libstdc++.6.0.9.dylib libstdc++.6.dylib libstdc++.dylib
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib
在这个文件夹添加207kb的libstdc++.6.0.9.tbd libstdc++.6.tbd libstdc++.tbd
3macOS开发
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib
在这个文件夹添加207kb的libstdc++.6.0.9.tbd libstdc++.6.tbd libstdc++.tbd
*******************************************************
这篇关于libstdc++适配Xcode10与iOS12 (零时解决方案)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!