X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Frun-cc.pl;h=58b5850ca1142f1b8feda00c9c59df13dd32005a;hb=e6601069038c35c546fd3f3dce95024b0d13f1b4;hp=8ca216c4e433c87a39aa7efe7f24c31626ff1ada;hpb=a3e3415b9b22251c3247c8732ab3f1b3841803a2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/run-cc.pl b/make/run-cc.pl index 8ca216c4e..58b5850ca 100755 --- a/make/run-cc.pl +++ b/make/run-cc.pl @@ -1,4 +1,24 @@ -#!/usr/bin/perl +#!/usr/bin/env perl + +# +# InspIRCd -- Internet Relay Chat Daemon +# +# Copyright (C) 2008 Thomas Stagner +# Copyright (C) 2008 Craig Edwards +# +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + ### THIS IS DESIGNED TO BE RUN BY MAKE! DO NOT RUN FROM THE SHELL (because it MIGHT sigterm the shell)! ### @@ -26,9 +46,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"; } @@ -64,6 +83,7 @@ my @msgfilters = ( [ qr/^.* warning: / => sub { my ($msg) = @_; my $str = $location . "\e[33;1m$msg\e[0m\n"; + $showncmdline = 1; $location = ""; return $str; } ], @@ -85,9 +105,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; } ], ); @@ -107,14 +133,18 @@ if ($cc eq "ar") { { if ($n =~ /\.cpp$/) { + my $f = $n; + if (defined $ENV{SOURCEPATH}) { + $f =~ s#^$ENV{SOURCEPATH}/src/##; + } if ($action eq "BUILD") { - $name .= " " . $n; + $name .= " " . $f; } else { $action = "BUILD"; - $name = $n; + $name = $f; } } elsif ($action eq "BUILD") # .cpp has priority.