Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find "Load Symbols Lazily" option in Xcode6?

Where can I find "Load Symbols Lazily" option in Xcode6?

I Couldn't find it in 'preference'

like image 619
RNA Avatar asked Sep 03 '25 01:09

RNA


2 Answers

Load Symbols Lazily" option is not available in Xcode 6. You can use the breakpoints from below:

Debug -> Debug Workflow -> deselect the "Always show disassembly"

https://i.sstatic.net/FPcvm.png

like image 104
Gupta Nishant Avatar answered Sep 05 '25 16:09

Gupta Nishant


That option was specific to gdb, and went away when Xcode stopped supporting gdb. lldb does most of the tricks that the "Load Symbols Lazily" and others, so that turning on options like this by hand should not be necessary. If you are still seeing slow symbol loading with lldb, please sample Xcode while it is slow and file bugs with the samples.

like image 40
Jim Ingham Avatar answered Sep 05 '25 18:09

Jim Ingham