IIRC gprof was a no go on the CB source. Maybe I'll see if there's any good free assembly level call profilers that might be able to zero in on what's taking the most time on this machine.
You have to enable profiling
only for one target at a time, not globally in project. This happens because, unfortunately, you can't specify an output file when using -pg...
So, just enable profiling on the debugger plugin
only and you got yourself some profiling info

Note though, that I 'm not finished with the debugger plugin. It has some optimization opportunities but it's still early for it...