Xcode 8 beta LLDB 不断崩溃
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/37904790/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Xcode 8 beta LLDB keeps crashing
提问by Michael Lee
Whenever I try and print something in the debugger, it will crash and deliver this line
每当我尝试在调试器中打印一些东西时,它都会崩溃并传递这条线
"The LLDB RPC server has crashed. Please file a bug with Apple with the crash log."
“LLDB RPC 服务器崩溃了。请使用崩溃日志向 Apple 提交错误。”
回答by Greg Clayton
LLDB is being run in a separate process now so if the debugger crashes, it no longer will crash Xcode, it will just crash the lldb-rpc-server and post this message. If you can file a bug with repro steps and hopefully source code and attach the crash log for lldb-rpc-server to the bug, we can figure things out.
LLDB 现在正在一个单独的进程中运行,所以如果调试器崩溃,它不再会使 Xcode 崩溃,它只会使 lldb-rpc-server 崩溃并发布此消息。如果您可以通过重现步骤和源代码提交错误并将 lldb-rpc-server 的崩溃日志附加到错误,我们可以解决问题。
I would recommend going a clean + rebuild to ensure that everything is rebuilt with the new compilers and so the modules get updated. If you are using CocoaPods or Carthage, then be sure to update any of those projects to the latest and greatest and clean and rebuild them.
我建议进行清理 + 重建,以确保使用新编译器重建所有内容,从而更新模块。如果您正在使用 CocoaPods 或 Carthage,那么请务必将这些项目中的任何一个更新到最新最好的,并清理并重建它们。