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.

Watch points on memory address

With the new change from gdb to lldb , I can't find a way how to set watch points on some …

xcode debugging gdb lldb
Cannot debug Swift module/framework embedded in Objective-C app

Alternative titles (to aid searching) Cannot debug Swift 2.3 framework linked to an Objective-C app in Xcode 8 error in auto-import: failed …

xcode lldb swift3 xcode8 swift2.3
LLDB equivalent of gdb "directory" command for specifying source search path?

Looking for the lldb equivalent of the gdb "directory" command to add search paths for finding missing source code (or …

xcode debugging gdb lldb
lldb: Couldn't materialize: couldn't get the value of variable

I have compiled a cpp file with this command line: g++ -g test.cpp It throws an exception at line 28. …

c++ osx-mavericks lldb
LLDB equivalent to GDB's "info malloc-history <address>" command?

I am trying to resolve a "message sent to deallocated instance " error in iOS.

ios xcode lldb
Setting disassembly flavour to Intel in LLDB

Is there a way to set the disassembly flavour like there is in GDB within LLDB so that it spits …

gdb llvm lldb
po in LLDB with swift

How can I plot out variable's value in a Swift App with LLDB? Earlier it was like po variable_name …

swift lldb
How do I have a breakpoint get triggered if an instance variable in the class has its value changed?

Say I have a variable, self.position, how do I get Xcode to break whenever it changes its value (a …

ios objective-c xcode lldb
Is it possible to debug a gcc-compiled program using lldb, or debug a clang-compiled program using gdb?

(Preface: I'm pretty new to C/C++ and I don't really know how debugging in native code actually works.) Some …

gcc gdb clang llvm lldb
Remote debugging using lldb/Xcode

I've got 2 stations, one for development and another one for testing. I'd like to be able to run and debug …

macos debugging remote-debugging lldb