From: Florian Krohm Date: Thu, 3 Nov 2011 02:10:02 +0000 (+0000) Subject: Also display information about the assembler (binutils). X-Git-Tag: svn/VALGRIND_3_8_0~593 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe2fc37c76ff2700b781df33992c985752301287;p=thirdparty%2Fvalgrind.git Also display information about the assembler (binutils). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12257 --- diff --git a/nightly/bin/nightly b/nightly/bin/nightly index 3ed1336284..5f9b52589a 100755 --- a/nightly/bin/nightly +++ b/nightly/bin/nightly @@ -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