Top "Lldb" questions

LLDB is a debugger built as a set of reusable components which highly leverage existing libraries in the larger LLVM Project, such as the Clang expression parser and LLVM disassembler.

How to get parameters using symbolic breakpoints in Objective-C

I have a breakpoint that looks like this -[UITableViewCell setSelected:] and it works, but I cannot figure out how …

objective-c xcode debugging lldb
What are the advantages of LLDB over GDB in iOS development?

In Xcode 4.3, now you can enable using LLDB as the debugger for iOS targets. What advantages does it have over …

ios debugging gdb lldb
How to skip a couple of lines code with lldb?

Is there a way to skip over lines of code while debugging with lldb without having to recompile?

xcode lldb
How to debug ios share extension?

How to print logs in Xcode's lldb debugger from extension?

ios xcode swift lldb ios8-share-extension
Evaluating an expression with overloaded operators in c++ lldb

I'm debugging a C++ program in Xcode 5 using lldb, and I would like to evaluate arbitrary expressions in the debugger, …

c++ xcode lldb
Redirect lldb output to file

I'm using lldb inside Xcode, and one of my variables contains a huge chunk of JSON data. Using po myVar …

lldb io-redirection
lldb : Printing a variable's address

I am trying to print a variable's address with lldb. However, calling print &(myVar) prints the variable's content instead …

memory-address lldb
How can I find the address of a stack trace in LLDB for iOS

When I get a crash report, the offending part of my code will sometimes look like this, instead of showing …

ios xcode lldb
Lldb : Setting conditional breakpoint with string equality as condition

I would like to set a conditional breakpoint with lldb. This is usually done using -c option : breakpoint set -f …

breakpoints lldb conditional-breakpoint
Terminal command-line debug of iOS Simulator apps?

Is it possible to use GDB or LLDB from the Terminal command-line under Mac OS X to debug apps running …

ios xcode macos debugging lldb