X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Frun-cc.pl;h=e5f29ec7f136139b1f3a01b99bc17a6e85518328;hb=4620e01f3612504488032f0d154336fad7d7a95f;hp=1ae219f69922a777792b5fce98373137416f3187;hpb=bb8eb83c28688f01bc161a8ce1b526956b2f1a83;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/run-cc.pl b/make/run-cc.pl index 1ae219f69..e5f29ec7f 100755 --- a/make/run-cc.pl +++ b/make/run-cc.pl @@ -26,9 +26,8 @@ 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; + my $errstr = $location . "$where error: cannot pass objects of non-POD type `$type' through `...'\n"; $location = ""; - my $errstr = "$where error: cannot pass objects of non-POD type `$type' through `...'\n"; if ($type =~ m/::(basic_)?string/) { $errstr .= "$where (Did you forget to call c_str()?)\n"; } @@ -85,9 +84,15 @@ my @msgfilters = ( $msg =~ s/std::basic_string\, std::allocator\ \>(\s+|)/std::string/g; $msg =~ s/std::basic_string\, std::allocator\ \>(\s+|)/irc::string/g; for my $stl (qw(deque vector list)) { - $msg =~ s/std::$stl\<(\S+), std::allocator\<(\1)\> \>/std::$stl\<$1\>/g; + $msg =~ s/std::$stl\<(\S+), std::allocator\<\1\> \>/std::$stl\<$1\>/g; + $msg =~ s/std::$stl\<(std::pair\<\S+, \S+\>), std::allocator\<\1 \> \>/std::$stl<$1 >/g; } - $msg =~ s/std::map\<(\S+), (\S+), std::less\<\1\>, std::allocator\ \> \>/std::map\<$1, $2\>/g; + $msg =~ s/std::map\<(\S+), (\S+), std::less\<\1\>, std::allocator\ \> \>/std::map<$1, $2>/g; + # Warning: These filters are GNU C++ specific! + $msg =~ s/__gnu_cxx::__normal_iterator\<(\S+)\*, std::vector\<\1\> \>/std::vector<$1>::iterator/g; + $msg =~ s/__gnu_cxx::__normal_iterator\<(std::pair\<\S+, \S+\>)\*, std::vector\<\1 \> \>/std::vector<$1 >::iterator/g; + $msg =~ s/__gnu_cxx::__normal_iterator\/std::string::iterator/g; + $msg =~ s/__gnu_cxx::__normal_iterator\/irc::string::iterator/g; return $msg; } ], ); @@ -156,12 +161,6 @@ if ($pid) { 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. - - for my $filter (@msgfilters) { my @caps; if (@caps = ($line =~ $filter->[0])) {