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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 use setup
qw($current_dir $wine_dir $winapi_dir);
26 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
31 @EXPORT_OK = qw($directory $tool $file $line $message);
33 use vars qw($directory $tool $file $line $message);
35 use output qw($output);
36 use options qw($options);
43 #sub winebuild_output($$);
48 ########################################################################
50 ########################################################################
55 ########################################################################
57 ########################################################################
62 if(!defined($where)) {
70 $context .= "<$where>";
74 $context = "<$where>";
81 $output->write("$directory: $context: can't parse output: '$current'\n");
83 $output->write("$directory: $context: can't parse output: '$current'\n");
88 ########################################################################
90 ########################################################################
99 if(/^\*\*\* \[(.*?)\] Error (\d+)$/) {
101 } elsif(/^\*\*\* Error code (\d+)$/) {
103 } elsif(/^\*\*\* Warning:\s+/) { #
104 if(/^File \`(.+?)\' has modification time in the future \((.+?) > \(.+?\)\)$/) {
107 error("make_output");
109 } elsif(/^\`(.*?)\' is up to date.$/) {
111 } elsif(/^\[(.*?)\] Error (\d+) \(ignored\)$/) {
113 } elsif(/^don\'t know how to make (.*?)\. Stop$/) {
115 } elsif(/^(Entering|Leaving) directory \`(.*?)\'$/) {
116 if($1 eq "Entering") {
123 foreach my $component (split(/\//, $directory)) {
124 if($component eq "wine") {
127 push @components, $component;
130 $directory = join("/", @components);
131 } elsif(/^(.*?) is older than (.*?), please rerun (.*?)\$/) {
133 } elsif(/^Nothing to be done for \`(.*?)\'\.$/) {
135 } elsif(s/^warning:\s+//) {
136 if(/^Clock skew detected. Your build may be incomplete.$/) {
139 error("make_output");
141 } elsif(/^Stop in (.*?)\.$/) {
146 error("make_output");
151 ########################################################################
153 ########################################################################
161 if(/rc\s+(\S+)(\s+\S+)+$/) {
164 $read_files =~ s/^\s*//;
165 $read_files = [split(/\s+/, $read_files)];
170 return ($read_files, $write_files);
173 ########################################################################
175 ########################################################################
183 if(/-o\s+(\S+)\s+(\S+)$/) {
190 return ($read_files, $write_files);
193 ########################################################################
195 ########################################################################
197 sub bison_command($) {
203 ########################################################################
205 ########################################################################
213 ########################################################################
215 ########################################################################
220 if(/^(.*?): No such file or directory/) {
221 $message = "directory '$1' doesn't exist";
225 ########################################################################
227 ########################################################################
229 sub flex_command($) {
235 ########################################################################
237 ########################################################################
245 ########################################################################
247 ########################################################################
253 if(/-o\s+(\S+)\s+(\S+)$/) {
257 $write_file =~ s%^\./%%;
258 $read_file =~ s%^\./%%;
260 $write_files = [$write_file];
261 $read_files = [$read_file];
262 } elsif(/-o\s+(\S+)/) {
265 $write_file =~ s%^\./%%;
267 $write_files = [$write_file];
268 $read_files = ["<???>"];
269 } elsif(/^-shared.*?-o\s+(\S+)/) {
272 $write_file =~ s%^\./%%;
274 $write_files = [$write_file];
275 $read_files = ["<???>"];
277 error("gcc_command");
280 return ($read_files, $write_files);
283 ########################################################################
285 ########################################################################
293 if(s/^warning:\s+//) {
296 if(/^((?:signed |unsigned )?(?:int|long)) format, (different type|\S+) arg \(arg (\d+)\)$/) {
299 HACCEL|HACMDRIVER|HANDLE|HBITMAP|HBRUSH|HCALL|HCURSOR|HDC|HDRVR|HDESK|HDRAWDIB
300 HGDIOBJ|HKL|HGLOBAL|HIMC|HINSTANCE|HKEY|HLOCAL|
301 HMENU|HMIDISTRM|HMIDIIN|HMIDIOUT|HMIXER|HMIXEROBJ|HMMIO|HMODULE|
302 HLINE|HPEN|HPHONE|HPHONEAPP|
303 HRASCONN|HRGN|HRSRC|HWAVEIN|HWAVEOUT|HWINSTA|HWND|
304 SC_HANDLE|WSAEVENT|handle_t|pointer)$/x)
310 } elsif(/^\(near initialization for \`(.*?)\'\)$/) {
312 } elsif(/^\`(.*?)\' defined but not used$/) {
314 } elsif(/^\`(.*?)\' is not at beginning of declaration$/) {
316 } elsif(/^\`%x\' yields only last 2 digits of year in some locales$/) {
318 } elsif(/^assignment makes integer from pointer without a cast$/) {
320 } elsif(/^assignment makes pointer from integer without a cast$/) {
322 } elsif(/^assignment from incompatible pointer type$/) {
324 } elsif(/^cast from pointer to integer of different size$/) {
326 } elsif(/^comparison between pointer and integer$/) {
328 } elsif(/^comparison between signed and unsigned$/) {
330 } elsif(/^comparison of unsigned expression < 0 is always false$/) {
332 } elsif(/^comparison of unsigned expression >= 0 is always true$/) {
334 } elsif(/^conflicting types for built-in function \`(.*?)\'$/) {
336 } elsif(/^empty body in an if-statement$/) {
338 } elsif(/^empty body in an else-statement$/) {
340 } elsif(/^implicit declaration of function \`(.*?)\'$/) {
342 } elsif(/^initialization from incompatible pointer type$/) {
344 } elsif(/^initialization makes pointer from integer without a cast$/) {
346 } elsif(/^missing initializer$/) {
348 } elsif(/^ordered comparison of pointer with integer zero$/) {
350 } elsif(/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') from incompatible pointer type$/) {
352 } elsif(/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') makes integer from pointer without a cast$/) {
354 } elsif(/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') makes pointer from integer without a cast$/) {
356 } elsif(/^return makes integer from pointer without a cast$/) {
358 } elsif(/^return makes pointer from integer without a cast$/) {
360 } elsif(/^type of \`(.*?)\' defaults to \`(.*?)\'$/) {
362 } elsif(/^unused variable \`(.*?)\'$/) {
364 } elsif(!$options->pedantic) {
372 $message = "function $function: warning: $_";
374 $message = "warning: $_";
379 } elsif(/^\`(.*?)\' undeclared \(first use in this function\)$/) {
381 } elsif(/^\(Each undeclared identifier is reported only once$/) {
383 } elsif(/^conflicting types for \`(.*?)\'$/) {
385 } elsif(/^for each function it appears in.\)$/) {
387 } elsif(/^too many arguments to function$/) {
389 } elsif(/^previous declaration of \`(.*?)\'$/) {
391 } elsif(/^parse error before `(.*?)'$/) {
393 } elsif(!$options->pedantic) {
398 } elsif(/^In function \`(.*?)\':$/) {
400 } elsif(/^At top level:$/) {
407 ########################################################################
409 ########################################################################
411 sub install_command($) {
417 ########################################################################
419 ########################################################################
427 if(/-r\s+(.*?)\s+-o\s+(\S+)$/) {
429 $read_files = [split(/\s+/, $1)];
434 return ($read_files, $write_files);
437 ########################################################################
439 ########################################################################
445 if(/^In function \`(.*?)\':$/) {
447 } elsif(/^more undefined references to \`(.*?)\' follow$/) {
449 } elsif(/^the use of \`(.+?)\' is dangerous, better use \`(.+?)\'$/) {
451 } elsif(/^undefined reference to \`(.*?)\'$/) {
453 } elsif(/^warning: (.*?)\(\) possibly used unsafely; consider using (.*?)\(\)$/) {
455 } elsif(/^warning: type and size of dynamic symbol \`(.*?)\' are not defined$/) {
462 ########################################################################
464 ########################################################################
466 sub ldconfig_command($) {
472 ########################################################################
474 ########################################################################
476 sub makedep_command($) {
482 ########################################################################
484 ########################################################################
486 sub mkdir_command($) {
492 ########################################################################
494 ########################################################################
496 sub ranlib_command($) {
502 $read_files = [split(/\s+/)];
505 return ($read_files, $write_files);
508 ########################################################################
510 ########################################################################
515 return ([], [], [split(/\s+/, $_)]);
518 ########################################################################
520 ########################################################################
528 ########################################################################
530 ########################################################################
532 sub strip_command($) {
538 ########################################################################
540 ########################################################################
542 sub winebuild_command($) {
548 ########################################################################
550 ########################################################################
552 sub winebuild_output($$) {
559 ########################################################################
561 ########################################################################
572 my $rc_file = $mc_file;
573 $rc_file =~ s/\.mc$/.rc/;
575 $write_files = [$rc_file];
576 $read_files = [$mc_file];
578 error("wmc_command");
581 return ($read_files, $write_files);
584 ########################################################################
586 ########################################################################
593 ########################################################################
595 ########################################################################
606 my $o_file = $rc_file;
607 $o_file =~ s/\.rc$/.o/;
609 $write_files = [$o_file];
610 $read_files = [$rc_file];
612 error("wrc_command");
615 return ($read_files, $write_files);
618 ########################################################################
620 ########################################################################
627 ########################################################################
629 ########################################################################
636 my $read_files = ["<???>"];
637 my $write_files = ["<???>"];
638 my $remove_files = [];
642 if(s/^\[\s+-d\s+(.*?)\s+\]\s+\|\|\s+//) {
648 ($read_files, $write_files) = ar_command($_);
649 } elsif(s/^as\s+//) {
651 ($read_files, $write_files) = as_command($_);
652 } elsif(s/^bison\s+//) {
654 ($read_files, $write_files) = bison_command($_);
655 } elsif(s/^cd\s+//) {
657 ($read_files, $write_files) = cd_command($_);
658 } elsif(s/^flex\s+//) {
660 ($read_files, $write_files) = flex_command($_);
661 } elsif(s/^for\s+//) {
663 ($read_files, $write_files) = for_command($_);
664 } elsif(s/^\/usr\/bin\/install\s+//) {
666 ($read_files, $write_files) = install_command($_);
667 } elsif(s/^ld\s+//) {
669 ($read_files, $write_files) = ld_command($_);
670 } elsif(s/^\/sbin\/ldconfig\s+//) {
672 ($read_files, $write_files) = ldconfig_command();
673 } elsif(s/^gcc\s+//) {
675 ($read_files, $write_files) = gcc_command($_);
676 } elsif(s/^(?:(?:\.\.\/)+|\.\/)tools\/makedep\s+//) {
678 ($read_files, $write_files) = makedep_command($_);
679 } elsif(s/^mkdir\s+//) {
681 ($read_files, $write_files) = mkdir_command($_);
682 } elsif(s/^ranlib\s+//) {
684 ($read_files, $write_files) = ranlib_command($_);
685 } elsif(s/^rm\s+//) {
687 ($read_files, $write_files, $remove_files) = rm_command($_);
688 } elsif(s/^sed\s+//) {
690 ($read_files, $write_files) = sed_command($_);
691 } elsif(s/^strip\s+//) {
693 ($read_files, $write_files) = strip_command($_);
694 } elsif(s/^LD_LIBRARY_PATH="(?:(?:\.\.\/)*unicode)?:\$LD_LIBRARY_PATH"\s+(?:\.\.\/)*tools\/winebuild\/winebuild\s+//) {
696 ($read_files, $write_files) = winebuild_command($_);
697 } elsif(s/^LD_LIBRARY_PATH="(?:(?:\.\.\/)*unicode)?:\$LD_LIBRARY_PATH"\s+(?:\.\.\/)*tools\/wmc\/wmc\s+//) {
699 ($read_files, $write_files) = wmc_command($_);
700 } elsif(s/^LD_LIBRARY_PATH="(?:(?:\.\.\/)*unicode)?:\$LD_LIBRARY_PATH"\s+(?:\.\.\/)*tools\/wrc\/wrc\s+//) {
702 ($read_files, $write_files) = wrc_command($_);
705 return ($tool, $read_files, $write_files, $remove_files);
708 ########################################################################
710 ########################################################################
721 my ($new_tool, $read_files, $write_files, $remove_files) = command($_);
722 if(defined($new_tool)) {
728 if($directory && $directory ne ".") {
729 $progress .= "$directory: ";
732 $progress .= "$tool: ";
735 if($tool =~ /^(?:cd|make)$/) {
737 } elsif($tool eq "ld"/) {
738 foreach my $file (@{$read_files}) {
739 $output->lazy_progress("${progress}reading '$file'");
741 my $file = $$write_files[0];
742 $output->progress("$progress: writing '$file'");
743 } elsif($tool eq "rm") {
744 foreach my $file (@{$remove_files}) {
745 $output->lazy_progress("${progress}removing '$file'");
748 if($#$read_files >= 0) {
749 $progress .= "read[" . join(" ", @{$read_files}) . "]";
751 if($#$write_files >= 0) {
752 if($#$read_files >= 0) {
755 $progress .= "write[" . join(" ", @{$write_files}) . "]";
757 if($#$remove_files >= 0) {
758 if($#$read_files >= 0 || $#$write_files >= 0) {
761 $progress .= "remove[" . join(" ", @{$remove_files}) . "]";
764 $output->progress($progress);
770 my $make = $options->make;
772 if(/^Wine build complete\.$/) {
774 } elsif(/^(.*?) is newer than (.*?), please rerun (.*?)\!$/) {
776 } elsif(/^(.*?) is older than (.*?), please rerun (.*?)$/) {
778 } elsif(/^\`(.*?)\' is up to date.$/) {
781 } elsif(s/^$make(?:\[(\d+)\])?:\s*//) {
784 } elsif(!defined($tool)) {
786 } elsif($tool eq "make") {
788 } elsif($tool eq "bison" && /^conflicts:\s+\d+\s+shift\/reduce$/) {
790 } elsif($tool eq "gcc" && /^(?:In file included |\s*)from (.+?):(\d+)[,:]$/) {
792 } elsif($tool =~ /^(?:gcc|ld)$/ && s/^(.+?\.s?o)(?:\(.*?\))?:\s*//) {
795 } elsif($tool =~ /^(?:gcc|ld)$/ && s/^(.*?)ld:\s*//) {
798 } elsif($tool =~ /^(?:gcc|ld)$/ && s/^collect2:\s*//) {
800 ld_output("collect2", $_);
801 } elsif($tool eq "gcc" && s/^(.+?\.[chly]):\s*//) {
803 } elsif($tool eq "ld" && s/^(.+?\.c):(?:\d+:)?\s*//) {
805 } elsif($tool eq "winebuild" && s/^(.+?\.spec):\s*//) {
806 winebuild_output($1, $_);
807 } elsif($tool eq "wmc" && s/^(.+?\.mc):\s*//) {
809 } elsif($tool eq "wrc" && s/^(.+?\.rc):\s*//) {
811 } elsif($tool eq "cd" && s/^\/bin\/sh:\s*cd:\s*//) {