diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-09-04 00:41:45 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-09-04 00:41:45 +0000 |
commit | 01479d0e9f3f77a26523e8c8cef1ab6f3dd28c1c (patch) | |
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
-rwxr-xr-x | utils/ccc-analyzer | 2 |
1 files changed, 2 insertions, 0 deletions
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"; } |