For both iPhone and desktop applications, when you choose "Build and Run" from the Run menu (or press cmd+return), Xcode launches gdb and then runs the application with gdb attached. This allows you to inspect stack state if the program crashes but adds significant overhead to program launch time, which is somewhat useless if your program doesn't crash.
Is there some way to enable the "Build and Run" command to just do a build and run the app externally, without attachment to gdb? I tried Googling and poking around Xcode help but to no avail...
Thanks!