X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=bin%2Fblhc;h=1cb49a6aa13990507138fc292bf995431571e6a8;hb=5b6b8e2eddbb9e6590e59a84d160e5d23bc09a9a;hp=030dd2128be0dfee9b34e066914949eb5d380700;hpb=dc76b3697c03b4f9f9a2ab3c354207a3f6db15bf;p=blhc%2Fblhc.git diff --git a/bin/blhc b/bin/blhc index 030dd21..1cb49a6 100755 --- a/bin/blhc +++ b/bin/blhc @@ -224,7 +224,7 @@ while (my $line = <>) { } else { # Ignore lines with no compiler commands. - next if $line !~ /\b(cc\b|gcc\b|g\+\+|c\+\+)/; + next if $line !~ /\b(cc|gcc|g\+\+|c\+\+)(\s|\\)/; # Ignore false positives. # @@ -265,6 +265,11 @@ if ($bindnow) { } foreach my $line (@input) { + # Ignore false positives. + # + # ./configure summary. + next if $line =~ /^Compiler:\s+(cc|gcc|g\+\+|c\+\+)$/; + # Is this a compiler or linker command? my $compiler = 1; my $linker = 0;