|
From: David F. <fa...@kd...> - 2014-01-14 15:54:41
|
On Tuesday 14 January 2014 07:18:05 Samuel Quiring wrote: > Greetings, > > Normally I invoke my app using a shell script: > > ./run.sh –e >& run log [I don't understand the "run log" part of it, but let's ignore that] > If I invoke this script using valgrind: > > valgrind ./run.sh –e >& run log > > Will valgrind evaluate the shell script or my app or both? The shell script. Better modify the shell script itself to call valgrind :) But you can also use the above command with --trace-children=yes and then it will trace all children, including your app. -- David Faure, fa...@kd..., http://www.davidfaure.fr Working on KDE, in particular KDE Frameworks 5 |