Hello, I run the whole process for retrieving a fresh report of callcatchers. I hope having using callcatcher in the right way and that it will help Here is the process I used in <source>/libo/clone : find . -mindepth 2 -maxdepth 2 -type d | grep -v git > directories.txtfor i in `cat directories.txt`;do cd $i;j=`basename ${i}`;callanalyse unxlngi6.pro/lib/*.so unxlngi6.pro/bin/* > ${j}_callanalyse_report.txt;cd ../../;done
find . -name *callanalyse_report* -size +1 > reports.txtfor i in `cat reports.txt`;do j=`basename $i|cut -f1 -d_`;echo -e "MODULE $j\n" >> full_reports.txt;cat $i >> full_reports.txt;echo -e "\n\n" >> full_reports.txt;done
There should be something simpler to do but i just wanted something that worked :-)
Julien.
Attachment:
full_reports.txt.zip
Description: Zip archive