or $line =~ /^\s*(?:- )?(?:HOST_)?(?:CC|CXX)\s*=\s*$cc_regex\s*$/
or $line =~ /^\s*-- Check for working (?:C|CXX) compiler: /
or $line =~ /^\s*(?:echo )?Using [A-Z_]+\s*=\s*/;
+ # `make` output.
+ next if $line =~ /^Making [a-z]+ in \S+/; # e.g. "[...] in c++"
# Check if additional hardening options were used. Used to ensure
# they are used for the complete build.
use strict;
use warnings;
-use Test::More tests => 88;
+use Test::More tests => 90;
sub is_blhc {
';
-# configure
+# configure/make
is_blhc 'configure', '', 1,
'No compiler commands!
';
+is_blhc 'make', '', 1,
+ 'No compiler commands!
+';
+
+
# cc