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 not showing source code

I am trying to debug a C++ program I am writing, but when I run it in LLDB and stop …

c++ lldb clang++ tup
Does LLDB have convenience variables ($var)?

Does LLDB have convenience variables? If so, how do I use them? If not, is there anything similar that I …

lldb
lldb error: variable not available

Here are my two lines of code: NSString *frontFilePath = [[NSBundle mainBundle] pathForResource:[self.bookendFileNames objectAtIndex:self.randomIndex] ofType:@"caf"]; NSLog(@"…

objective-c ios xcode lldb
Why can't LLDB print view.bounds?

Things like this drive me crazy when debugging: (lldb) p self.bounds error: unsupported expression with unknown type error: unsupported …

objective-c lldb
lldb error: property not found on object of type

I am trying to debug my iOS app using lldb and I'm getting really weird errors on debug. A few …

objective-c ios6 xcode4.5 lldb
Permanently configuring LLDB (in Xcode 4.3.2) not to stop on signals

I'm trying to get LLDB (running in Xcode 4.3.2 with an OS X application) to not stop on certain signals. If …

xcode macos signals lldb
Xcode LLDB watchpoints

Is there any way to watch a variable in Xcode using LLDB ? Or is this only possible with GDB ? I'm …

xcode gdb lldb
Dump memory in lldb

As stated on this site. When I want to dump memory in gdb. The start point is 0x1000 and end 0…

gdb dump lldb
po command in Xcode does not generate output

At some point during my work, Xcode's po and p commands stopped working. No matter what I enter, it doesn't …

ios xcode gdb lldb
How to have LLDB print the locations of shared libraries in memory?

I am trying to gather as much information as I can about an apparent infinite loop issue seen when using …

macos debugging dynamic-linking lldb address-space