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 change variables value while debugging with LLDB in Xcode?

In Xcode, GDB allows you to change local variables while debugging (see how to change NSString value while debugging in …

xcode debugging lldb
How to call methods or execute code in LLDB debugger?

I know I can type print someFloatVariable when I set a breakpoint or po [self someIvarHoldingAnObject], but I can't do …

xcode llvm lldb
How to print the contents of a memory address using LLDB?

I am using LLDB and wondering how to print the contents of a specific memory address, for example 0xb0987654.

xcode lldb
What is LLDB RPC Server ? When does it crash in Xcode? Why it crashes?

I am getting a message in my debugger: The LLDB RPC server has crashed. The crash log is located in ~/…

xcode crash lldb
Xcode - Error creating LLDB target

I'm getting this error whenever I build in XCode 6 beta 4. It seems to be making my app insanely slow. Warning: …

ios xcode swift lldb beta
View array in LLDB: equivalent of GDB's '@' operator in Xcode 4.1

I would like to view an array of elements pointed to by a pointer. In GDB this can be done …

xcode debugging xcode4 llvm lldb
GDB Vs LLDB debuggers

What is the difference between GDB & LLDB debuggers? I recently upgraded my Xcode version from 4.2 to 4.3 & started getting …

xcode debugging cocoa-touch gdb lldb
How to get NDK debugging to work in Android Studio?

Android Studio doesn't stop at breakpoints in C++ code, this is what i've done so far : In AndroidManifest.xml : android:…

c++ android-studio android-ndk lldb
Xcode/LLDB: How to get information about an exception that was just thrown?

OK, so imagine that my breakpoint in objc_exception_throw has just triggered. I'm sitting at the debugger prompt, and …

objective-c iphone xcode debugging lldb
How to debug EXC_BAD_ACCESS bug

I received an error EXC_BAD_ACCESS code=2 at0xb0987654 I am wondering how to print out the value at 0…

objective-c xcode lldb