Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 8 beta LLDB keeps crashing

Tags:

xcode

xcode8

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."

like image 838
Michael Lee Avatar asked Jun 19 '16 07:06

Michael Lee


1 Answers

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.

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.

like image 134
Greg Clayton Avatar answered Jan 05 '23 02:01

Greg Clayton