error_color($message, 'red'), $flags, error_color(':', 'yellow'),
$line;
}
-sub error_nonverbose_build {
+sub error_non_verbose_build {
my ($line) = @_;
printf "%s%s %s",
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/((?<!\.)cc|(x86_64-linux-gnu-)?gcc|g\+\+|c\+\+)/;
-
# Regex to catch (GCC) compiler warnings.
my $warning_regex = qr/^(.+?):([0-9]+):[0-9]+: warning: (.+?) \[(.+?)\]$/;
# 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.
} 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;
}
@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.
# check the build log is verbose
-is_blhc 'verbose-build', '', 5,
+is_blhc 'verbose-build', '', 4,
"NONVERBOSE BUILD: checking if you want to see long compiling messages... no
NONVERBOSE BUILD: CC libtest-a.lo
NONVERBOSE BUILD: CC libtest-b.lo
NONVERBOSE BUILD: CC modules/server/test.c
NONVERBOSE BUILD: Compiling test/test.cc to ../build/test/test.cc
NONVERBOSE BUILD: [ 22%] Building CXX object src/CMakeFiles/test/test.cpp.o
-No compiler commands!
+NONVERBOSE BUILD: [ 82%] Building C object src/CMakeFiles/test/test.c.o
";