2 # Copyright 1999, 2000, 2001 Patrik Stridvall
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 use setup
qw($current_dir $wine_dir $winapi_dir $winapi_check_dir);
27 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
32 @EXPORT_OK = qw($directory $tool $file $line $message);
34 use vars qw($directory $tool $file $line $message);
36 use output qw($output);
37 use options qw($options);
39 ########################################################################
41 ########################################################################
46 ########################################################################
48 ########################################################################
53 if(!defined($where)) {
61 $context .= "<$where>";
65 $context = "<$where>";
72 $output->write("$directory: $context: can't parse output: '$current'\n");
74 $output->write("$directory: $context: can't parse output: '$current'\n");
79 ########################################################################
81 ########################################################################
92 my ($new_tool, $read_files, $write_files, $remove_files) = command($_);
93 if(defined($new_tool)) {
99 if($directory && $directory ne ".") {
100 $progress .= "$directory: ";
103 $progress .= "$tool: ";
106 if($tool =~ /^cd|make$/) {
108 } elsif($tool =~ /^ld$/) {
109 foreach my $file (@{$read_files}) {
110 $output->lazy_progress("${progress}reading '$file'");
112 my $file = $$write_files[0];
113 $output->progress("$progress: writing '$file'");
114 } elsif($tool =~ /^rm$/) {
115 foreach my $file (@{$remove_files}) {
116 $output->lazy_progress("${progress}removing '$file'");
119 if($#$read_files >= 0) {
120 $progress .= "read[" . join(" ", @{$read_files}) . "]";
122 if($#$write_files >= 0) {
123 if($#$read_files >= 0) {
126 $progress .= "write[" . join(" ", @{$write_files}) . "]";
128 if($#$remove_files >= 0) {
129 if($#$read_files >= 0 || $#$write_files >= 0) {
132 $progress .= "remove[" . join(" ", @{$remove_files}) . "]";
135 $output->progress($progress);
141 my $make = $options->make;
143 if(/^Wine build complete\.$/) {
145 } elsif(/^(.*?) is newer than (.*?), please rerun (.*?)\!$/) {
147 } elsif(/^(.*?) is older than (.*?), please rerun (.*?)$/) {
149 } elsif(/^\`(.*?)\' is up to date.$/) {
152 } elsif(s/^$make(?:\[(\d+)\])?:\s*//) {
155 } elsif(!defined($tool)) {
157 } elsif($tool eq "make") {
159 } elsif($tool eq "bison" && /^conflicts:\s+\d+\s+shift\/reduce$/) {
161 } elsif($tool eq "gcc" && /^(?:In file included |\s*)from (.+?):(\d+)[,:]$/) {
163 } elsif($tool =~ /^gcc|ld$/ && s/^(.+?\.s?o)(?:\(.*?\))?:\s*//) {
166 } elsif($tool =~ /^gcc|ld$/ && s/^(.*?)ld:\s*//) {
169 } elsif($tool =~ /^gcc|ld$/ && s/^collect2:\s*//) {
171 ld_output("collect2", $_);
172 } elsif($tool eq "gcc" && s/^(.+?\.[chly]):\s*//) {
174 } elsif($tool eq "ld" && s/^(.+?\.c):(?:\d+:)?\s*//) {
176 } elsif($tool eq "winebuild" && s/^(.+?\.spec):\s*//) {
177 winebuild_output($1, $_);
178 } elsif($tool eq "wmc" && s/^(.+?\.mc):\s*//) {
180 } elsif($tool eq "wrc" && s/^(.+?\.rc):\s*//) {
182 } elsif($tool eq "cd" && s/^\/bin\/sh:\s*cd:\s*//) {
195 ########################################################################
197 ########################################################################
208 } elsif(/^\*\*\* \[(.*?)\] Error (\d+)$/) {
210 } elsif(/^\*\*\* Error code (\d+)$/) {
212 } elsif(/^\*\*\* Warning:\s+/) { #
213 if(/^File \`(.+?)\' has modification time in the future \((.+?) > \(.+?\)\)$/) {
216 error("make_output");
218 } elsif(/^\`(.*?)\' is up to date.$/) {
220 } elsif(/^\[(.*?)\] Error (\d+) \(ignored\)$/) {
222 } elsif(/^don\'t know how to make (.*?)\. Stop$/) {
224 } elsif(/^(Entering|Leaving) directory \`(.*?)\'$/) {
225 if($1 eq "Entering") {
232 foreach my $component (split(/\//, $directory)) {
233 if($component eq "wine") {
236 push @components, $component;
239 $directory = join("/", @components);
240 } elsif(/^(.*?) is older than (.*?), please rerun (.*?)\$/) {
242 } elsif(/^Nothing to be done for \`(.*?)\'\.$/) {
244 } elsif(s/^warning:\s+//) {
245 if(/^Clock skew detected. Your build may be incomplete.$/) {
248 error("make_output");
250 } elsif(/^Stop in (.*?)\.$/) {
255 error("make_output");
260 ########################################################################
262 ########################################################################
269 my $read_files = ["<???>"];
270 my $write_files = ["<???>"];
271 my $remove_files = [];
275 if(s/^\[\s+-d\s+(.*?)\s+\]\s+\|\|\s+//) {
281 ($read_files, $write_files) = ar_command($_);
282 } elsif(s/^as\s+//) {
284 ($read_files, $write_files) = as_command($_);
285 } elsif(s/^bison\s+//) {
287 ($read_files, $write_files) = bison_command($_);
288 } elsif(s/^cd\s+//) {
290 ($read_files, $write_files) = cd_command($_);
291 } elsif(s/^flex\s+//) {
293 ($read_files, $write_files) = flex_command($_);
294 } elsif(s/^for\s+//) {
296 ($read_files, $write_files) = for_command($_);
297 } elsif(s/^\/usr\/bin\/install\s+//) {
299 ($read_files, $write_files) = install_command($_);
300 } elsif(s/^ld\s+//) {
302 ($read_files, $write_files) = ld_command($_);
303 } elsif(s/^\/sbin\/ldconfig\s+//) {
305 ($read_files, $write_files) = ldconfig_command();
306 } elsif(s/^gcc\s+//) {
308 ($read_files, $write_files) = gcc_command($_);
309 } elsif(s/^(?:(?:\.\.\/)+|\.\/)tools\/makedep\s+//) {
311 ($read_files, $write_files) = makedep_command($_);
312 } elsif(s/^mkdir\s+//) {
314 ($read_files, $write_files) = mkdir_command($_);
315 } elsif(s/^ranlib\s+//) {
317 ($read_files, $write_files) = ranlib_command($_);
318 } elsif(s/^rm\s+//) {
320 ($read_files, $write_files, $remove_files) = rm_command($_);
321 } elsif(s/^sed\s+//) {
323 ($read_files, $write_files) = sed_command($_);
324 } elsif(s/^strip\s+//) {
326 ($read_files, $write_files) = strip_command($_);
327 } elsif(s/^LD_LIBRARY_PATH="(?:(?:\.\.\/)*unicode)?:\$LD_LIBRARY_PATH"\s+(?:\.\.\/)*tools\/winebuild\/winebuild\s+//) {
329 ($read_files, $write_files) = winebuild_command($_);
330 } elsif(s/^LD_LIBRARY_PATH="(?:(?:\.\.\/)*unicode)?:\$LD_LIBRARY_PATH"\s+(?:\.\.\/)*tools\/wmc\/wmc\s+//) {
332 ($read_files, $write_files) = wmc_command($_);
333 } elsif(s/^LD_LIBRARY_PATH="(?:(?:\.\.\/)*unicode)?:\$LD_LIBRARY_PATH"\s+(?:\.\.\/)*tools\/wrc\/wrc\s+//) {
335 ($read_files, $write_files) = wrc_command($_);
338 return ($tool, $read_files, $write_files, $remove_files);
341 ########################################################################
343 ########################################################################
351 if(/rc\s+(\S+)(\s+\S+)+$/) {
354 $read_files =~ s/^\s*//;
355 $read_files = [split(/\s+/, $read_files)];
360 return ($read_files, $write_files);
363 ########################################################################
365 ########################################################################
373 if(/-o\s+(\S+)\s+(\S+)$/) {
380 return ($read_files, $write_files);
383 ########################################################################
385 ########################################################################
393 ########################################################################
395 ########################################################################
403 ########################################################################
405 ########################################################################
410 if(/^(.*?): No such file or directory/) {
411 $message = "directory '$1' doesn't exist";
415 ########################################################################
417 ########################################################################
425 ########################################################################
427 ########################################################################
435 ########################################################################
437 ########################################################################
443 if(/-o\s+(\S+)\s+(\S+)$/) {
447 $write_file =~ s%^\./%%;
448 $read_file =~ s%^\./%%;
450 $write_files = [$write_file];
451 $read_files = [$read_file];
452 } elsif(/-o\s+(\S+)/) {
455 $write_file =~ s%^\./%%;
457 $write_files = [$write_file];
458 $read_files = ["<???>"];
459 } elsif(/^-shared.*?-o\s+(\S+)/) {
462 $write_file =~ s%^\./%%;
464 $write_files = [$write_file];
465 $read_files = ["<???>"];
467 error("gcc_command");
470 return ($read_files, $write_files);
473 ########################################################################
475 ########################################################################
483 if(s/^warning:\s+//) {
488 } elsif(/^((?:signed |unsigned )?(?:int|long)) format, (different type|\S+) arg \(arg (\d+)\)$/) {
491 HACCEL|HACMDRIVER|HANDLE|HBITMAP|HBRUSH|HCALL|HCURSOR|HDC|HDRVR|HDESK|HDRAWDIB
492 HGDIOBJ|HKL|HGLOBAL|HIMC|HINSTANCE|HKEY|HLOCAL|
493 HMENU|HMIDISTRM|HMIDIIN|HMIDIOUT|HMIXER|HMIXEROBJ|HMMIO|HMODULE|
494 HLINE|HPEN|HPHONE|HPHONEAPP|
495 HRASCONN|HRGN|HRSRC|HWAVEIN|HWAVEOUT|HWINSTA|HWND|
496 SC_HANDLE|WSAEVENT|handle_t|pointer)$/x)
502 } elsif(/^\(near initialization for \`(.*?)\'\)$/) {
504 } elsif(/^\`(.*?)\' defined but not used$/) {
506 } elsif(/^\`(.*?)\' is not at beginning of declaration$/) {
508 } elsif(/^\`%x\' yields only last 2 digits of year in some locales$/) {
510 } elsif(/^assignment makes integer from pointer without a cast$/) {
512 } elsif(/^assignment makes pointer from integer without a cast$/) {
514 } elsif(/^assignment from incompatible pointer type$/) {
516 } elsif(/^cast from pointer to integer of different size$/) {
518 } elsif(/^comparison between pointer and integer$/) {
520 } elsif(/^comparison between signed and unsigned$/) {
522 } elsif(/^comparison of unsigned expression < 0 is always false$/) {
524 } elsif(/^comparison of unsigned expression >= 0 is always true$/) {
526 } elsif(/^conflicting types for built-in function \`(.*?)\'$/) {
528 } elsif(/^empty body in an if-statement$/) {
530 } elsif(/^empty body in an else-statement$/) {
532 } elsif(/^implicit declaration of function \`(.*?)\'$/) {
534 } elsif(/^initialization from incompatible pointer type$/) {
536 } elsif(/^initialization makes pointer from integer without a cast$/) {
538 } elsif(/^missing initializer$/) {
540 } elsif(/^ordered comparison of pointer with integer zero$/) {
542 } elsif(/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') from incompatible pointer type$/) {
545 if(defined($name) && $name =~ /^GDI_AllocObject$/) {
550 } elsif(/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') makes integer from pointer without a cast$/) {
552 } elsif(/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') makes pointer from integer without a cast$/) {
554 } elsif(/^return makes integer from pointer without a cast$/) {
556 } elsif(/^return makes pointer from integer without a cast$/) {
558 } elsif(/^type of \`(.*?)\' defaults to \`(.*?)\'$/) {
560 } elsif(/^unused variable \`(.*?)\'$/) {
562 } elsif(!$options->pedantic) {
570 $message = "function $function: warning: $_";
572 $message = "warning: $_";
577 } elsif(/^\`(.*?)\' undeclared \(first use in this function\)$/) {
579 } elsif(/^\(Each undeclared identifier is reported only once$/) {
581 } elsif(/^conflicting types for \`(.*?)\'$/) {
583 } elsif(/^for each function it appears in.\)$/) {
585 } elsif(/^too many arguments to function$/) {
587 } elsif(/^previous declaration of \`(.*?)\'$/) {
589 } elsif(/^parse error before `(.*?)'$/) {
591 } elsif(!$options->pedantic) {
596 } elsif(/^In function \`(.*?)\':$/) {
598 } elsif(/^At top level:$/) {
605 ########################################################################
607 ########################################################################
609 sub install_command {
615 ########################################################################
617 ########################################################################
625 if(/-r\s+(.*?)\s+-o\s+(\S+)$/) {
627 $read_files = [split(/\s+/, $1)];
632 return ($read_files, $write_files);
635 ########################################################################
637 ########################################################################
645 } elsif(/^In function \`(.*?)\':$/) {
647 } elsif(/^more undefined references to \`(.*?)\' follow$/) {
649 } elsif(/^the use of \`(.+?)\' is dangerous, better use \`(.+?)\'$/) {
651 } elsif(/^undefined reference to \`(.*?)\'$/) {
653 } elsif(/^warning: (.*?)\(\) possibly used unsafely; consider using (.*?)\(\)$/) {
655 } elsif(/^warning: type and size of dynamic symbol \`(.*?)\' are not defined$/) {
662 ########################################################################
664 ########################################################################
666 sub ldconfig_command {
672 ########################################################################
674 ########################################################################
676 sub makedep_command {
682 ########################################################################
684 ########################################################################
692 ########################################################################
694 ########################################################################
702 $read_files = [split(/\s+/)];
705 return ($read_files, $write_files);
708 ########################################################################
710 ########################################################################
715 return ([], [], [split(/\s+/, $_)]);
718 ########################################################################
720 ########################################################################
728 ########################################################################
730 ########################################################################
738 ########################################################################
740 ########################################################################
742 sub winebuild_command {
748 ########################################################################
750 ########################################################################
752 sub winebuild_output {
759 ########################################################################
761 ########################################################################
772 my $rc_file = $mc_file;
773 $rc_file =~ s/\.mc$/.rc/;
775 $write_files = [$rc_file];
776 $read_files = [$mc_file];
778 error("wmc_command");
781 return ($read_files, $write_files);
784 ########################################################################
786 ########################################################################
793 ########################################################################
795 ########################################################################
806 my $o_file = $rc_file;
807 $o_file =~ s/\.rc$/.o/;
809 $write_files = [$o_file];
810 $read_files = [$rc_file];
812 error("wrc_command");
815 return ($read_files, $write_files);
818 ########################################################################
820 ########################################################################