2
votes
How do you start debugging a Cocoa app with a URL?
You can do
gdb --wait myAppName
and then click on the link to launch your app. This will cause your app to break into the debugger very, very early, before main …
2
votes
How to find out who is the caller of a method or function?
Sorry I don't have a full answer for you, just some relevant info.
NSThread defines a method that gets you an unsymbolicated backtrace, callStackReturnAddresses. In 10.6, it a …
2
votes
How does one automatically attach a debugger to a process at process start on OS X?
Use gdb --wait. For example, try
gdb --wait TextEdit
from the command line, then launch TextEdit.
…
