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.

LLDB (Swift): Casting Raw Address into Usable Type

Is there an LLDB command that can cast a raw address into a usable Swift class? For example: (lldb) po 0…

ios swift lldb
Prevent "Execution was interrupted, reason: internal ObjC exception breakpoint(-3)" on lldb

I've written some code that dumps all ivars of a class into a dictionary in Objective C. This uses valueForKey: …

objective-c lldb
error: property 'frame' not found on object of type 'UIView *'

I'm debugging my code and trying to figure out the size of the view using this: p view.frame.size.…

ios view lldb
LLDB: List source code

My single most used gdb command is l followed by n followed by l -. How can I get the …

c++ debugging gdb lldb
How to print out a property's contents using Xcode debugger?

I'm writing an iOS app and I need help using the built-in Xcode debugger. Suppose I have an object called …

ios xcode gdb lldb
Getting info about bad memory address in LLDB

I am trying to debug an EXC_BAD_ACCESS in my iPhone app. It is crashing on a method call …

iphone exc-bad-access lldb
lldb: Breakpoint on exceptions (equivalent of gdb's catch throw)

I am trying to use lldb for c++ debugging and I want to halt if an exception is thrown, like …

debugging llvm lldb
Is there a "TUI" mode for standalone lldb?

Since gdb is getting onerous to work with on a Mac these days (at least I feel like I am …

lldb
LLDB: Couldn't IRGen expression

When I'm running a unit test and want to debug something, I set a breakpoint and type for instance "po …

ios xcode lldb
lldb fails to print variable values with "error: reference to 'id' is ambiguous"

Since I updated to xcode 4.3 and let it switch my debugger over to lldb, any request to print a member …

objective-c ios xcode4.3 lldb