X-Git-Url: https://ruderich.org/simon/gitweb/?p=blhc%2Fblhc.git;a=blobdiff_plain;f=bin%2Fblhc;h=813936890b9369de332a6a9648bff06c6e9a05ba;hp=6fb0f21b491ebbd7b4cb4592ea82416e60bcc64d;hb=de65359d7659f6fbadeb128abf39ff881e05c458;hpb=b7365f756ee0d81d1d5b7286f09c9dfc5b6fe892 diff --git a/bin/blhc b/bin/blhc index 6fb0f21..8139368 100755 --- a/bin/blhc +++ b/bin/blhc @@ -44,7 +44,7 @@ sub error_flags { error_color($message, 'red'), $flags, error_color(':', 'yellow'), $line; } -sub error_nonverbose_build { +sub error_non_verbose_build { my ($line) = @_; printf "%s%s %s", @@ -112,12 +112,48 @@ sub pic_pie_conflict { return scalar @result == 0; } +sub is_non_verbose_build { + my ($line, $next_line, $cc_regex, $skip_ref) = @_; + + my $cmake_non_verbose = qr/^\s*\[[\d ]+%\] Building (C|CXX) object (.+?)$/; + if (not ($line =~ /^checking if you want to see long compiling messages\.\.\. no/ + or $line =~ /^\s*(CC|CCLD)\s+/ + or $line =~ /^\s*(C|c)ompiling\s+/ + or $line =~ /$cmake_non_verbose/)) { + return 0; + } + + # On the first pass we only check if this line is verbose or not. + return 1 if not defined $next_line; + + # Second pass, we have access to the next line. + ${$skip_ref} = 0; + + # CMake prints the non-verbose messages also when building verbose. If a + # compiler and the file name occurs in the next line, treat it as verbose + # build. + if ($line =~ /$cmake_non_verbose/) { + # Get filename, we can't use the complete path as only parts of it are + # used in the real compiler command ... + $2 =~ m{/([a-zA-Z0-9._-]+)$}; + my $file = $1; + + if ($next_line =~ /\Q$file\E/ and $next_line =~ /$cc_regex/) { + # We still have to skip the current line as it doesn't contain any + # compiler commands. + ${$skip_ref} = 1; + return 0; + } + } + + return 1; +} + # CONSTANTS/VARIABLES # Regex to catch compiler commands. my $cc_regex = qr/((?) { # Ignore compiler warnings for now. next if $line =~ /$warning_regex/; - # Try to detect non verbose build logs. - if ($line =~ /^checking if you want to see long compiling messages\.\.\. no/ - or $line =~ /^\s*(CC|CCLD)\s+/ - or $line =~ /^\s*(C|c)ompiling\s+/ - or $line =~ /^\s*\[[\d ]+%\] Building /) { - error_nonverbose_build($line); - $exit |= 1 << 2; - } - + # Check if this line indicates a non verbose build. + my $non_verbose = is_non_verbose_build($line); # One line may contain multiple commands (";"). Treat each one as single # line. @@ -245,14 +274,12 @@ while (my $line = <>) { } else { # Ignore lines with no compiler commands. - next if $line !~ /\b$cc_regex(\s|\\)/; + next if $line !~ /\b$cc_regex(\s|\\)/ and not $non_verbose; # Ignore false positives. # # `./configure` output. - if ($line =~ /^checking /) { - next; - } + next if not $non_verbose and $line =~ /^checking /; push @input, $line; } @@ -285,7 +312,18 @@ if ($bindnow) { @ldflags = (@ldflags, @ldflags_bindnow); } -foreach my $line (@input) { +for (my $i = 0; $i < scalar @input; $i++) { + my $line = $input[$i]; + + my $skip = 0; + if (is_non_verbose_build($line, $input[$i + 1], $cc_regex, \$skip)) { + error_non_verbose_build($line); + $exit |= 1 << 2; + next; + } + # Even if it's a verbose build, we might have to skip this line. + next if $skip; + # Ignore false positives. # # ./configure summary.