X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Frun-cc.pl;h=7ea2f39d009b85120a0f4849a4df3f10bfdcbe1c;hb=ba713cdc076da4c053b6914ee894609cf3018694;hp=4c07632f3fdd1562aa428a8f52279a40c654bce2;hpb=0626e6a68af3327ecfda4467f2dd09d4e729773d;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/run-cc.pl b/make/run-cc.pl index 4c07632f3..7ea2f39d0 100755 --- a/make/run-cc.pl +++ b/make/run-cc.pl @@ -26,8 +26,10 @@ my $location = ""; my @msgfilters = ( [ qr/^(.*) warning: cannot pass objects of non-POD type `(.*)' through `\.\.\.'; call will abort at runtime/ => sub { my ($msg, $where, $type) = @_; + print $location; + $location = ""; my $errstr = "$where error: cannot pass objects of non-POD type `$type' through `...'\n"; - if ($type =~ m/::string/) { + if ($type =~ m/::(basic_)?string/) { $errstr .= "$where (Did you forget to call c_str()?)\n"; } die $errstr; @@ -80,17 +82,37 @@ my ($r_stderr, $w_stderr); my $name = ""; my $action = ""; -foreach my $n (@ARGV) -{ - if ($n =~ /\.cpp$/) - { - $action = "BUILD"; - $name = $n; - } - elsif ($n !~ /\.^-c/) +if ($cc eq "ar") { + $name = $ARGV[1]; + $action = "ARCHIVE"; +} else { + foreach my $n (@ARGV) { - $action = "LINK"; - $name = $n; + if ($n =~ /\.cpp$/) + { + if ($action eq "BUILD") + { + $name .= " " . $n; + } + else + { + $action = "BUILD"; + $name = $n; + } + } + elsif ($action eq "BUILD") # .cpp has priority. + { + next; + } + elsif ($n eq "-o") + { + $action = $name = $n; + } + elsif ($name eq "-o") + { + $action = "LINK"; + $name = $n; + } } } @@ -102,11 +124,11 @@ pipe($r_stderr, $w_stderr) or die "pipe stderr: $!\n"; $pid = fork; -die "Cannot fork to start gcc! $!\n" unless defined($pid); +die "Cannot fork to start $cc! $!\n" unless defined($pid); if ($pid) { - print "\t\e[1;32m$action:\e[0m\t\t$name\n" unless $name eq ""; + printf "\t\e[1;32m%-20s\e[0m%s\n", $action . ":", $name unless $name eq ""; my $fail = 0; # Parent - Close child-side pipes. @@ -116,6 +138,16 @@ if ($pid) { # Now read each line of stderr LINE: while (defined(my $line = <$r_stderr>)) { chomp $line; + + # someone come up with a better way of doing this, it cant go in message filters as message filters + # cant do straight-out replace. + # + # The order of these replacements is IMPORTANT. DO NOT REORDER THEM. + + $line =~ s/std\:\:basic_string\, std::allocator\ \>(\s+|)/std::string/g; + $line =~ s/std\:\:basic_string\, std::allocator\ \>(\s+|)/irc::string/g; + $line =~ s/std\:\:deque\<(\S+)\, std::allocator\<\S+\> \>/std::deque<$1>/g; + for my $filter (@msgfilters) { my @caps; if (@caps = ($line =~ $filter->[0])) {