Xcode – Error creating LLDB target

Did you use Architectures=$(ARCHS_STANDARD_32_BIT) and run your app on a 64 bit device? (iPhone 5S or iPhone 5S simulator) Apple seems to be stricter with apps which don’t support 64bit. So if there is no specific reason, I think it’s better to include arm64 in your build architecture NOTE ABOUT 64-BIT ARCHITECTURE An app extension … Read more

Xcode/LLDB: How to get information about an exception that was just thrown?

The exception object is passed in as the first argument to objc_exception_throw. LLDB provides $arg1..$argn variables to refer to arguments in the correct calling convention, making it simple to print the exception details: (lldb) po $arg1 (lldb) po [$arg1 name] (lldb) po [$arg1 reason] Make sure to select the objc_exception_throw frame in the call stack … Read more