Lines Matching full:file
59 foreach my $file (keys %cmd1) {
60 if (! $cmd2{$file}) {
61 print "*** $file missing in $log2\n";
63 compare_invocations($file, $cmd1{$file }, $cmd2{$file});
66 foreach my $file (keys %cmd2) {
67 if (! $cmd1{$file}) {
68 print "*** $file missing in $log1\n";
74 # Compare two lines |c1| and |c2| which are compiler invocations for |file|.
78 my ($file, $c1, $c2) = @_;
80 # print "COMPARE $file\n";
102 # The remaining lines are considered to be blank-separated options and file
117 print "*** '$k' is missing in compilation of '$file' in $log2\n";
122 print "*** '$k' is missing in compilation of '$file' in $log1\n";
127 # Read a compiler log file.
128 # Return hash: relative (to build root) file name -> compiler invocation
165 my $file = extract_file($line);
166 $file = "$dir/$file"; # make absolute
167 $file =~ s/$root//; # remove build root
168 # print "FILE $file\n";
169 $cmd{"$file"} = $line;
177 print "*** File $log does not contain any compiler invocations\n";
184 # Extract a file name from the command line. Assume there is a -o filename
193 print "*** Could not extract file name from $line\n";