From 0626e6a68af3327ecfda4467f2dd09d4e729773d Mon Sep 17 00:00:00 2001 From: aquanight Date: Mon, 11 Feb 2008 01:39:09 +0000 Subject: Tidy up run-cc error reporting (eg: only say 'An error occured' once, and make it show before an include stack or 'In ctor/dtor/method/function' message) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8891 e03df62e-2008-0410-955e-edbf42e46eb7 --- make/run-cc.pl | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) (limited to 'make/run-cc.pl') diff --git a/make/run-cc.pl b/make/run-cc.pl index 75234213c..4c07632f3 100755 --- a/make/run-cc.pl +++ b/make/run-cc.pl @@ -18,6 +18,11 @@ use POSIX (); my $cc = shift(@ARGV); +my $showncmdline = 0; + +# GCC's "location of error stuff", which accumulates the "In file included from" include stack +my $location = ""; + my @msgfilters = ( [ qr/^(.*) warning: cannot pass objects of non-POD type `(.*)' through `\.\.\.'; call will abort at runtime/ => sub { my ($msg, $where, $type) = @_; @@ -28,14 +33,42 @@ my @msgfilters = ( die $errstr; } ], + # Start of an include stack. + [ qr/^In file included from .*[,:]$/ => sub { + my ($msg) = @_; + $location = "$msg\n"; + } ], + + # Continuation of an include stack. + [ qr/^ from .*[,:]$/ => sub { + my ($msg) = @_; + $location .= "$msg\n"; + } ], + + # A function, method, constructor, or destructor is the site of a problem + [ qr/In ((con|de)structor|(member )?function)/ => sub { + my ($msg) = @_; + # If a complete location string is waiting then probably we dropped an error, so drop the location for a new one. + if ($location =~ m/In ((con|de)structor|(member )?function)/) { + $location = "$msg\n"; + } else { + $location .= "$msg\n"; + } + } ], + [ qr/^.* warning: / => sub { my ($msg) = @_; + print $location; + $location = ""; print STDERR "\e[33;1m$msg\e[0m\n"; } ], [ qr/^.* error: / => sub { my ($msg) = @_; - print STDERR "An error occured when executing:\e[37;1m $cc " . join(' ', @ARGV) . "\n"; + print STDERR "An error occured when executing:\e[37;1m $cc " . join(' ', @ARGV) . "\n" unless $showncmdline; + $showncmdline = 1; + print $location; + $location = ""; print STDERR "\e[31;1m$msg\e[0m\n"; } ], ); -- cgit v1.2.3