LLDB manual / documentation

I would like to understand a little how to debug my iOS code with LLDB. I often see my colleagues debugging using an invitation to see, for example, the value of variables, etc. Where can I find documentation on how to use the LLDB debugger on the command line?

Thanks in advance.

+7
source share
4 answers

I think this one is the best resource for LLDB as it is an official tutorial.

+2
source

You can watch a video of the Apple WWDC session on lldb from June, if you have access to them. https://developer.apple.com/videos/wwdc/2012/ Session header was "Debugging with LLDB", session description

LLDB is the next generation debugger for OS X and iOS. Get an introduction to using LLDB through the Xcode console and graphical debugger. The team that created LLDB will showcase the latest features and improvements, helping you track bugs more efficiently than ever before.

+4
source

This GDB-> LLDB chart may help, even if you are not familiar with GDB:

http://lldb.llvm.org/lldb-gdb.html

+2
source

It looks like Apple finally wrote LLDB documentation around September 2013.

I am adding this answer because this question is the best hit in my searches, and Apple usually handles documents well (when they finally get around it).

+1
source

All Articles