]> granicus.if.org Git - clang/commitdiff
Capture 'uname' and 'gcc -v' output to .info files.
authorTed Kremenek <kremenek@apple.com>
Thu, 4 Sep 2008 00:41:45 +0000 (00:41 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 4 Sep 2008 00:41:45 +0000 (00:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55752 91177308-0d34-0410-b5e6-96231b3b80d8

utils/ccc-analyzer

index 323d529fa8e7e2791fa34da78fdb876aad5f4f35..823c914203b941796fd9d9d45ee87e3ca8c01c60 100755 (executable)
@@ -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";
 }