Capture 'uname' and 'gcc -v' output to .info files.

llvm-svn: 55752
This commit is contained in:
Ted Kremenek 2008-09-04 00:41:45 +00:00
parent 0f99912868
commit 3cbb3b2920
1 changed files with 2 additions and 0 deletions

View File

@ -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";
}