X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6cf061b5e399a51146190807ab2f8334af89b93b..def9d357a9211e9ee3d7bae418cb3e0fe8481c1e:/tools/compile-stats diff --git a/tools/compile-stats b/tools/compile-stats index 053fdf0d06..70dcd48d4c 100755 --- a/tools/compile-stats +++ b/tools/compile-stats @@ -36,8 +36,11 @@ for VERSION in `ls buildlogs|grep -v html` ; do ## Extract some info out there last=`tail -n 1 buildlogs/$VERSION/$file` - sys=`grep "checking target system type..." buildlogs/$VERSION/$file| \ - sed 's/checking target system type...//'` + sys=`grep -e "^build='[^']*'\$" buildlogs/$VERSION/$file| \ + sed "s/^build='\([^']*\)'\$/\1/"` + grassys=`grep "^#define GRAS_THISARCH" buildlogs/$VERSION/$file| \ + sed 's/.*GRAS_THISARCH //'` + ## Make text and html outputs if [ "x$last" = "xRemote compilation sucessful." ] ; then @@ -51,7 +54,7 @@ for VERSION in `ls buildlogs|grep -v html` ; do echo " $host" >> $HTML echo " $sys" >> $HTML - echo "$res $host $sys" + echo "$res $host $sys ($grassys)" done echo "" >> $HTML done