问题
I would like to not use the debugger (gdb), though I want to get output from my application (from stdout and stderr).
I find that I never use it, I always use NSLog
(or, for C printf
and for C++ std::cout
).
How can I disable the debugger (even in the debug configuration)?
回答1:
Next to run and stop - click on the Scheme area, select edit scheme - then on build configuration select release.
Not sure if that what you meant.
回答2:
In XCode 4 - at the top left where the Run and Stop buttons are, there's a drop down selection (the Scheme selection), click on the left drop down and then 'Edit Scheme...' Next, locate and click on your Debug scheme (should be titled 'Run YourAppName.app') on the left. Now in the main content area, click on the 'Info' tab and change your Debugger selection to None - save your settings by clicking OK

回答3:
If you mean the debugger console, then you can control whether it automatically appears using the Behaviors preference panel. If you want to see the output, you can instead have Xcode automatically navigate to the current run log (also controlled by Behaviors) on launch or (I think) as soon as there's any output.
If you really mean to say you don't use the debugger in general (pausing at breakpoints and examining variables, stepping through code, etc. then you're hurting yourself in a way that makes most developers cringe. It's like a carpenter boldly proclaiming he doesn't use the equivalent reality-checking tools: a tape measure and level. I hope I misunderstood you there.
回答4:
XCode Version 9.2
Project name -> Edit Scheme... -> Run -> deselect "Debug executable"
来源:https://stackoverflow.com/questions/6922408/can-i-disable-the-debugger-in-xcode-4