In xcode, the iPhone app build result will be run on lldb.

Asked 2 years ago, Updated 2 years ago, 78 views

I recently started developing iPhone apps.

When I am working on it, I am having trouble with the phenomenon that the build is completed without any errors, but the output results are (lldb).

This is a difficult question to understand without any specific examples, but please let me know.

objective-c xcode6

2022-09-30 17:55

2 Answers

It's normal if you run the app and the iOS simulator starts or the app screen appears on the actual machine. The display (lldb) indicates that the debugger is accepting commands and is probably attached to the debugger because it is booting from Xcode. If you tap the app directly from the actual machine or simulator and start it, you should be able to start it without attaching the debugger. Recent Xcode uses a debugger called lldb by default, so if you want to use the old gdb, it should be resolved by changing the debugger from EditScheme to gdb.


2022-09-30 17:55

Up to Xcode 4.x, both gdb and lldb were included, and lldb was able to change from EditScheme to gdb by default, but Xcode 6.x does not include gdb as a standard, so it cannot be changed to gdb. (Sorry it didn't solve the problem...)


2022-09-30 17:55

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.