On Mon, 2011-11-07 at 16:15 +0100, ext Tim Sander wrote: > Am Montag, 7. November 2011 schrieb Christian Kandeler: > > On Mon, 2011-11-07 at 14:31 +0100, ext Tim Sander wrote: > > > Am Montag, 7. November 2011 schrieb Christian Kandeler: > > > > On Mon, 2011-11-07 at 13:28 +0100, ext Tim Sander wrote: > > > > > Well stopping the process by pressing on the Stop-Button within > > > > > Qtcreator fails to stop the process. It tells me "Debuggen beendet" > > > > > but the process is still running on the target. > > > > > > > > Does that also happen when you just "run" the application (as opposed > > > > to debugging)? > > > > > > Yes it is also happening in this case. > > > > Okay, then please file a report at bugreports.qt.nokia.com, preferably > > attaching a minimal project that exhibits the problem. Please also tell > > us what the remote system is exactly. > Well in this current case the system is a embedded system based on ptxdist, > but probably someone has an idea what might be missing so that described > error > occurs? I just tried to debug "localhost" and that works so it really seems > more an error of the embedded system and not qtcreator.
I assume your system does not have "pkill", which is what we use for shutting down processes. We try to make very few assumptions about the target system, but this is a tool we currently need. Doing magic with ps and grep seems even more fragile. Perhaps iterating through /proc "manually" would do the trick (we do that for the process list anyway, so we could even re-use the code), but we do some scripting there, and I'm afraid someday someone will come along and complain that our crappy IDE does not work with his C shell based system... Still, perhaps this really is more robust, so file a bug report anyway. Christian _______________________________________________ Qt-creator mailing list [email protected] http://lists.qt.nokia.com/mailman/listinfo/qt-creator
