Hello,
The Qt doc (http://doc.trolltech.com/4.5/debug.html) says that to debug the Qt libraries I need to set DYLD_IMAGE_SUFFIX=_debug. The examples show I need to basically invoke gdb from the command line adding this environment variable in front of the invocation to get it to work.

Is there any way to do this so that I can debug from Creator without starting a terminal session of gdb?

I tried creating a gdb startup script and putting:

shell DYLD_IMAGE_SUFFIX=_debug

into it but this didn't work. Seems like this is a good candidate for a checkbox in the Creator debugger prefs? Or am I missing something here?

Thanks,
Brett