]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Also display information about the assembler (binutils).
authorFlorian Krohm <florian@eich-krohm.de>
Thu, 3 Nov 2011 02:10:02 +0000 (02:10 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Thu, 3 Nov 2011 02:10:02 +0000 (02:10 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12257

nightly/bin/nightly

index 3ed1336284b7f7f984871eacd231e987f1b62f58..5f9b52589a80dbc2ab371ed163938cd61744d491 100755 (executable)
@@ -181,7 +181,8 @@ END=`date "+%F %H:%M:%S %Z"`
 # Gather some information about this run and its environment
 valgrind_revision="`svn info valgrind-new | grep Revision | sed 's/Revision[ ]*:[ ]*//'`"
 vex_revision="`svn info valgrind-new/VEX | grep Revision | sed 's/Revision[ ]*:[ ]*//'`"
-gcc_version="`gcc --version | head -1`"
+gcc_version="`gcc --version 2> /dev/null | head -1`"
+as_version="`as --version 2> /dev/null | head -1`"
 libc_so="`ls -1 /lib/libc.so.* | tail -1`"
 libc="unknown"
 if [ "x$libc_so" != "x" ]; then
@@ -198,7 +199,8 @@ fi
 
 echo "valgrind revision: $valgrind_revision" >  final
 echo "VEX revision:      $vex_revision"      >> final
-echo "GCC version:       $gcc_version"       >> final
+echo "C compiler:        $gcc_version"       >> final
+echo "Assembler:         $as_version"        >> final
 echo "C library:         $libc"              >> final
 echo "uname -mrs:        $uname_stuff"       >> final
 echo "Vendor version:    $vendor_stuff"      >> final