commit | 01479d0e9f3f77a26523e8c8cef1ab6f3dd28c1c | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Thu Sep 04 00:41:45 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Thu Sep 04 00:41:45 2008 +0000 |
tree | 75e31c23bc5f600b3ef8bbc4ba821d78c2775ad0 | |
parent | 607b17b7362e4a47d0e14bdf72fe9f51527c3ee1 [diff] |
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 323d529..823c914 100755 --- a/utils/ccc-analyzer +++ b/utils/ccc-analyzer
@@ -46,6 +46,8 @@ 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"; }