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.
I am trying to debug my Objective-C program, and I need to print my unsigned long long variable in hex. …
objective-c debugging hex lldb unsigned-long-long-intI apologize for the likely trivial question but I am running into a wall as Google gives me the same …
debugging breakpoints lldbMy process starts child processes and I want to debug these as well, using LLDB on OS X. I can't …
macos process lldbSometimes I'm trying to track down a really rare bug in an iOS app. I'll hit it in the debugger …
ios xcode lldbI'm trying to use LLDB (because I apparently can't use gdb anymore) to debug som of my code and each …
macos breakpoints lldb osx-yosemiteI'm embedding MonoTouch in an Xcode project, and want to stop LLDB debugger from handling SIGBUS signals, since they are …
xcode xamarin.ios lldbI am having trouble debugging Swift Strings func stringTest() { let test1:String = "test1"; let test2:NSString = "test2"; // <-- Breakpoint …
swift lldb