From: Ted Kremenek Date: Thu, 4 Sep 2008 00:41:45 +0000 (+0000) Subject: Capture 'uname' and 'gcc -v' output to .info files. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01479d0e9f3f77a26523e8c8cef1ab6f3dd28c1c;p=clang Capture 'uname' and 'gcc -v' output to .info files. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55752 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer index 323d529fa8..823c914203 100755 --- a/utils/ccc-analyzer +++ b/utils/ccc-analyzer @@ -46,6 +46,8 @@ sub ProcessClangFailure { print OUT "$ErrorType\n"; print OUT "@$Args\n"; close OUT; + `uname -a >> $PPFile.info 2>&1`; + `$CC -v >> $PPFile.info 2>&1`; system 'mv',$ofile,"$PPFile.output"; }