From: Douglas Bagnall Date: Fri, 4 May 2018 03:26:47 +0000 (+1200) Subject: autobuild: add compiler version to results tarball X-Git-Tag: ldb-1.4.0~396 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=4eeb43d06c7bfe1e3661c954586eed0b88315ee8 autobuild: add compiler version to results tarball Signed-off-by: Douglas Bagnall Reviewed-by: Gary Lockyer --- diff --git a/script/autobuild.py b/script/autobuild.py index 0ac65f138f1..5a7b7bc32c8 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -520,7 +520,7 @@ class buildlist(object): def write_system_info(self): filename = 'system-info.txt' f = open(filename, 'w') - for cmd in ['uname -a', 'free', 'cat /proc/cpuinfo']: + for cmd in ['uname -a', 'free', 'cat /proc/cpuinfo', 'cc --version']: print('### %s' % cmd, file=f) print(run_cmd(cmd, output=True, checkfail=False), file=f) print(file=f)